Control Framework: Fatal error - GUI cannot be reached-ALV Grid in Bckgrnd

I have an ALV grid which dumps in the background. But works fine in the foreground.
I thought I am not using Control framework anywhere. But I get 'COntrol framework :Fatal error - GU cannot be reached' error.
I am using a docking container that I have split using a splitter.
I have no custom container in my screen. What else could be causing the Control framework error ? Any suggestions is appreciated. But please do not tell me to use 'REUSE_ALV*' or Classical reporting
Here are the PBO modules of my screen and here are my data declarations.
ALV Data declarations :
data :gt_sort type lvc_t_sort,
        gr_event_handler TYPE REF TO lcl_event_handler ,
     o_docking type ref to cl_gui_docking_container,"Docking Container
     o_grid type ref to cl_gui_alv_grid,"Grid
     o_split type ref to cl_gui_easy_splitter_container,"Splitter
     o_top_container type ref to cl_gui_container,   "Top Container
     o_bottom_container type ref to cl_gui_container,"Bottom Container
     o_document type ref to cl_dd_document.          "Document
module status_0100 output.
if o_docking is initial.
  set pf-status 'ZSTATUS_0100'.
  set titlebar 'ZTITLE_0100'.
Creating Objects
  perform create_objects.
Filling top of page
  perform fill_top_of_page.
Filling the fieldcatalog table
perform build_fieldcat. "we already got'em
Displaying the output
  perform display_output.
endif.
Here is the Form Create_objects called in the PBO.
form create_objects .
Creating Docking Container
  CREATE OBJECT o_docking
         EXPORTING
           RATIO                       = '95'.
  IF sy-subrc eq 0.
Splitting the Docking container
    CREATE OBJECT o_split
      EXPORTING
       PARENT            = o_docking
       sash_position     = 25 "Position of Splitter Bar (in Percent)
       with_border       = 0. "With Border = 1 Without Border = 0
  Placing the containers in the splitter
    o_top_container = o_split->top_left_container .
    o_bottom_container = o_split->bottom_right_container .
  Creating Grid
    CREATE OBJECT o_grid
      EXPORTING
        i_parent          =  o_bottom_container.
  Creating the document
    CREATE OBJECT o_document
    EXPORTING
        style  = 'ALV_GRID'.
     CREATE OBJECT gr_event_handler .
  ENDIF.
endform.                    " create_objects
form fill_top_of_page .
data : lv_char(255) type c.
Calling the methods for dynamic text
   CALL METHOD o_document->add_gap
    EXPORTING
      width      = 140.
  CALL METHOD o_document->add_text
    EXPORTING
      text          = 'Plant Attainment Report '
      sap_fontsize  = 'Large'
      sap_color     = cl_dd_area=>list_key_int
      sap_emphasis  = cl_dd_area=>strong. " For bold
Display the data
  CALL METHOD o_document->display_document
    EXPORTING
       parent             = o_top_container.
Calling the method of ALV to process top of page
  CALL METHOD o_grid->list_processing_events
    EXPORTING
      i_event_name      = 'TOP_OF_PAGE'
      i_dyndoc_id       = o_document.
endform.                    " fill_top_of_page
form display_output .
  gx_variant-report = sy-repid.
  gs_layout-zebra = 'X'.
  gs_layout-sel_mode ='X'.
  gs_layout-cwidth_opt = 'X'.
  call method o_grid->set_table_for_first_display
    exporting
      is_variant      = gx_variant
      i_save          = 'A'
      is_layout       = gs_layout
    changing
      it_fieldcatalog = it_fldcat
      it_outtab       = <gt_tabletotal>.
    IF sy-subrc <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SET HANDLER gr_event_handler->handle_print_top_of_page FOR o_grid .
endform.                    " display_output 
Edited by: Shareen Hegde on Jul 23, 2009 5:03 PM (I have no clue why 
.. doesn't work anymore. My code looks messed up..Sorry folks!

Nilesh,
If i put all these create objects inside the      IF CL_GUI_ALV_GRID=>OFFLINE( ) IS INITIAL.   ENDIF , will I be still able to use ,
call method o_grid->set_table_for_first_display
    exporting
      is_variant      = gx_variant
      i_save          = 'A'
      is_layout       = gs_layout
    changing
      it_fieldcatalog = it_fldcat
      it_outtab       = <gt_tabletotal>.
     in background ? WIll I not get - OBJECTS_OBJREF_NOT_ASSIGNED   erorr ?
How can I call the set_table_for_first_display without creating the object reference ?
Here is my creat object routine.
form create_objects .
* Creating Docking Container
IF CL_GUI_ALV_GRID=>OFFLINE( ) .
  CREATE OBJECT o_docking
         EXPORTING
           RATIO                       = '95'.
  IF sy-subrc eq 0.
* Splitting the Docking container
    CREATE OBJECT o_split
      EXPORTING
       PARENT            = o_docking
       sash_position     = 25 "Position of Splitter Bar (in Percent)
       with_border       = 0. "With Border = 1 Without Border = 0
*   Placing the containers in the splitter
    o_top_container = o_split->top_left_container .
    o_bottom_container = o_split->bottom_right_container .
*   Creating Grid
    CREATE OBJECT o_grid
      EXPORTING
        i_parent          =  o_bottom_container.
*   Creating the document
    CREATE OBJECT o_document
    EXPORTING
        style  = 'ALV_GRID'.
     ENDIF.
     CREATE OBJECT gr_event_handler .
endif.
endform.                    " create_objects

Similar Messages

  • Control Framework: Fatal error - GUI cannot be reached

    Hello All,
       Iam using BDC for creating a ZCR order throught VA01 - Credit Memo request. When executed in the foreground, it works fine.But when ran in background gives an error message - Control Framework: Fatal error - GUI cannot be reached  and gives a short Dump for 'RAISE_EXCEPTION'.
    Please suggest.

    Normally, BDC should run the same way whether it is in background of Foreground.
    No, BDC does not run  the same way in background and foreground
    To understand BDC in background : different behavior or termination read those OSS notes :
    - [Note 33319 - Batch input: Backgr. runs diff. than in the dialog|https://service.sap.com/sap/support/notes/33319]
    - [Note 311440 - Batch input and controls|https://service.sap.com/sap/support/notes/311440]
    Also this note of interest :
    - [Note 554139 - FAQ 2: Batch input|https://service.sap.com/sap/support/notes/554139]
    Regards,
    Raymond

  • User- Control Framework: Fatal error - GUI cannot be reached

    Hi,
    I am currently working on a Project , were I am facing an issue.
    I have Inbound IDoc which come, runs a BDC and then Packs HU via transaction VT02N.
    The Problem is when I or some user manually trigger this IDoc via WE19 the code works fine,
    But when an external system sends an IDoc we have system user which does the processing and while doing so it gives out an message "User- Control Framework: Fatal error - GUI cannot be re", we cannot debug this. I managed to capture all system message and save them in a file.
    Could some one kindly help me with this.
    Br,
    AmiT

    hi.
    you are correct , we have used call transaction in N mode,
    But initially it used to work and suddenly its behaving like this.
    Br,
    AmiT

  • Fatal error LNK1181: cannot open input file"OLDNAMES.LIB

    Hello, everybody.
    My problem is :'fatal error LNK1181: cannot open input file "OLDNAMES.LIB"'
    Somebody can help me?
    Thanks a lot for your assistance.
    I tried to passe a C structure between Forte and C.
    I taked the exemple of fort&eacute; : technote ID : 10637.
    We use Forte 3.0.j.1 and I try the example on a NT4 server.
    There are several projects that make up this application. They are as follows:
    StructExampleGUI - This is this project. It is the GUI front
    (File: StructGu.Pex) end that calls the C wrapper.
    StructSharedObjects - This project defines the Employee object
    (File: StructSh.Pex) that is needed for both the GUI and
    for the StructExampleServices project.
    StructExampleServices - This project defines the StructExample
    (File: StructSO.Pex) services object. This is a restricted
    project whose purpose is to actually call
    the C project.
    StructExampleProject - This is the External C Project that defines
    (File: Struct.Pex) the interface necessary for Forte to generate
    the wrapper code needed to call the C file.
    StructEX.c - This is the C code that is being wrappered. It
    has one function getemployee that modifies an
    input output structure. The memory allocation is
    done by Forte in the StructExampleServices
    project.
    First of all, I compile the StructEx.C
    After, in the Struct.pex, I set the parameter :
    HAS PROPERTY
    CompatibilityLevel = 0;
    ProjectType = LIBRARY;
    Restricted = TRUE;
    MultiThreaded = TRUE;
    LibraryName = 'struct';
    extended = (Externalincludedirectories='e:/Pgmprod/cpp/50/include
    e:/Pgmprod/cpp/50/lib',
    ExternalObjectFiles = 'O:/Herve/ForteAPI/structex');
    I load the struct.pex.
    Double click on the StructExampleProject
    File:Configure As:Library
    Make distibution and select Full make, Install in current Environment & Auto
    Compile
    When I tried this in the first time, I has a probleme with struct.bom. I
    resolved
    that. (technote 11431:Autocompile on NT fails to build the compiled partition)
    But now, I'm another problem (see below) and I don't find the solution.
    Somebody can help me? Thanks a lot for your assistance.
    The problem : Fort&eacute; say 'fatal error LNK1181: cannot open input file
    "OLDNAMES.LIB"'
    BEGIN FILE
    Working directory is e:\pgmprod\forte\30J1\tmp\cg4\pc_nt\struct
    Processing BOM file: struct.bom
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 11.00.7022 for 80x86
    Copyright (C) Microsoft Corp 1984-1997. All rights reserved.
    struct.cc
    Microsoft (R) 32-Bit Incremental Linker Version 5.00.7022
    Copyright (C) Microsoft Corp 1992-1997. All rights reserved.
    /DLL /NOD
    /OUT:struct.dll
    /DEF:struct.nti
    struct.obj
    O:\Herve\ForteAPI\structex.obj
    e:\pgmprod\forte\30J1\install\lib\qqsm.lib
    e:\pgmprod\forte\30J1\install\lib\qqfo.lib
    e:\pgmprod\forte\30J1\install\lib\qqdo.lib
    e:\pgmprod\forte\30J1\install\lib\qqsh.lib
    e:\pgmprod\forte\30J1\install\lib\qqcm.lib
    e:\pgmprod\forte\30J1\install\lib\qqkn.lib
    e:\pgmprod\forte\30J1\install\lib\MSVCRT.LIB
    e:\pgmprod\forte\30J1\install\lib\qqsh.lib
    OLDNAMES.LIB OLDNAMES.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB
    COMDLG32.LIB SHELL32.LIB WSOCK32.LIB NETAPI32.LIB WINMM.LIB ADVAPI32.LIB
    LINK : fatal error LNK1181: cannot open input file "OLDNAMES.LIB"
    cl /W3 /Gf /GX /MD /c /Ob1 /vmg /DSTRICT /DWIN32 /D__WIN32__ /DLIBOO_DLL
    /DWIN32_LEAN_AND_MEAN /Ie:\pgmprod\forte\30J1\install\inc\cmn
    /Ie:\pgmprod\forte\30J1\install\inc\os
    /Ie:\pgmprod\forte\30J1\install\inc\ds
    /Ie:\pgmprod\forte\30J1\install\inc\handles /Ie:\pgmprod\forte\30J1
    /Ie:\Pgmprod\cpp\50\include /Ie:\Pgmprod\cpp\50\lib /Fostruct.obj /Tp struct.cc
    link @linkopt.lrf
    Error during compilation, aborting.
    END FILE
    Completed compilation for PC NT.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hussein,
    Please find below the requested information,
    1. Path variable value after sourcing the apps env file,
    D:\oracle\VIS\apps\apps_st\appl>APPSVIS_oracletemp.cmd
    ECHO is off.
    ECHO is off.
    Tue 11/23/2010 02:36 PM
    ECHO is off.
    ECHO is off.
    Setting environment for using Microsoft Visual Studio 2008 x86 tools.
    APPSORA.cmd exiting with status 0
    D:\oracle\VIS\apps\apps_st\appl>
    D:\oracle\VIS\apps\apps_st\appl>echo %path%
    C:\VS2008\Common7\IDE;C:\VS2008\VC\BIN;C:\VS2008\Common7\Tools;C:\Windows\Micros
    oft.NET\Framework\v3.5;C:\Windows\Microsoft.NET\Framework\v2.0.50727;C:\VS2008\V
    C\VCPackages;C:\Program Files\\Microsoft SDKs\Windows\v6.0A\bin;D:\oracle\VIS\ap
    ps\apps_st\appl\au\12.0.0\bin;D:\oracle\VIS\apps\apps_st\appl\fnd\12.0.0\bin;D:\
    oracle\VIS\apps\apps_st\appl\ad\12.0.0\bin;D:\oracle\VIS\apps\tech_st\10.1.3\app
    sutil\jdk\jre\bin;D:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-m
    ulti-thread\;D:\oracle\VIS\apps\apps_st\comn\util\unzip\unzip;D:\oracle\VIS\apps
    \tech_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.2\bin;D:\oracle
    \VIS\apps\tech_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.3\apps
    util\jdk\jre\bin;C:\cygwin\bin;C:\Windows;C:\Windows\system32;D:\oracle\VIS\apps
    \tech_st\10.1.3\ant\bin
    D:\oracle\VIS\apps\apps_st\appl>
    2. gnumake version is as follows,
    D:\oracle\VIS\apps\apps_st\appl>gnumake --version
    GNU Make 3.81
    Copyright (C) 2006 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
    PARTICULAR PURPOSE.
    This program built for i386-pc-mingw32
    D:\oracle\VIS\apps\apps_st\appl>
    Thanks,
    Rajesh.

  • Re: fatal error LNK1181: cannot open input file"OLDNAMES.LIB

    Hi,
    May be it is because it appears twice on your script :
    OLDNAMES.LIB OLDNAMES.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    At 18:40 18/12/98 +0100, Herv&eacute; Depoorter wrote:
    Hello, everybody.
    My problem is :'fatal error LNK1181: cannot open input file "OLDNAMES.LIB"'
    Somebody can help me?
    Thanks a lot for your assistance.
    >
    I tried to passe a C structure between Forte and C.
    I taked the exemple of fort&eacute; : technote ID : 10637.
    We use Forte 3.0.j.1 and I try the example on a NT4 server.
    There are several projects that make up this application. They are asfollows:
    StructExampleGUI - This is this project. It is the GUI front
    (File: StructGu.Pex) end that calls the C wrapper.
    StructSharedObjects - This project defines the Employee object
    (File: StructSh.Pex) that is needed for both the GUI and
    for the StructExampleServices project.
    StructExampleServices - This project defines the StructExample
    (File: StructSO.Pex) services object. This is a restricted
    project whose purpose is to actually call
    the C project.
    StructExampleProject - This is the External C Project that defines
    (File: Struct.Pex) the interface necessary for Forte to generate
    the wrapper code needed to call the C file.
    StructEX.c - This is the C code that is being wrappered. It
    has one function getemployee that modifies an
    input output structure. The memory allocation is
    done by Forte in the StructExampleServices
    project.
    >
    First of all, I compile the StructEx.C
    After, in the Struct.pex, I set the parameter :
    HAS PROPERTY
    CompatibilityLevel = 0;
    ProjectType = LIBRARY;
    Restricted = TRUE;
    MultiThreaded = TRUE;
    LibraryName = 'struct';
    extended = (Externalincludedirectories='e:/Pgmprod/cpp/50/include
    e:/Pgmprod/cpp/50/lib',
    ExternalObjectFiles = 'O:/Herve/ForteAPI/structex');
    I load the struct.pex.
    Double click on the StructExampleProject
    File:Configure As:Library
    Make distibution and select Full make, Install in current Environment & Auto
    Compile
    When I tried this in the first time, I has a probleme with struct.bom. I
    resolved
    that. (technote 11431:Autocompile on NT fails to build the compiled
    partition)
    >
    But now, I'm another problem (see below) and I don't find the solution.
    Somebody can help me? Thanks a lot for your assistance.
    The problem : Fort&eacute; say 'fatal error LNK1181: cannot open input file
    "OLDNAMES.LIB"'
    BEGIN FILE
    Working directory is e:\pgmprod\forte\30J1\tmp\cg4\pc_nt\struct
    Processing BOM file: struct.bom
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 11.00.7022 for 80x86
    Copyright (C) Microsoft Corp 1984-1997. All rights reserved.
    struct.cc
    Microsoft (R) 32-Bit Incremental Linker Version 5.00.7022
    Copyright (C) Microsoft Corp 1992-1997. All rights reserved.
    /DLL /NOD
    /OUT:struct.dll
    /DEF:struct.nti
    struct.obj
    O:\Herve\ForteAPI\structex.obj
    e:\pgmprod\forte\30J1\install\lib\qqsm.lib
    e:\pgmprod\forte\30J1\install\lib\qqfo.lib
    e:\pgmprod\forte\30J1\install\lib\qqdo.lib
    e:\pgmprod\forte\30J1\install\lib\qqsh.lib
    e:\pgmprod\forte\30J1\install\lib\qqcm.lib
    e:\pgmprod\forte\30J1\install\lib\qqkn.lib
    e:\pgmprod\forte\30J1\install\lib\MSVCRT.LIB
    e:\pgmprod\forte\30J1\install\lib\qqsh.lib
    OLDNAMES.LIB OLDNAMES.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB
    COMDLG32.LIB SHELL32.LIB WSOCK32.LIB NETAPI32.LIB WINMM.LIB ADVAPI32.LIB
    LINK : fatal error LNK1181: cannot open input file "OLDNAMES.LIB"
    cl /W3 /Gf /GX /MD /c /Ob1 /vmg /DSTRICT /DWIN32 /D__WIN32__ /DLIBOO_DLL
    /DWIN32_LEAN_AND_MEAN /Ie:\pgmprod\forte\30J1\install\inc\cmn
    /Ie:\pgmprod\forte\30J1\install\inc\os
    /Ie:\pgmprod\forte\30J1\install\inc\ds
    /Ie:\pgmprod\forte\30J1\install\inc\handles /Ie:\pgmprod\forte\30J1
    /Ie:\Pgmprod\cpp\50\include /Ie:\Pgmprod\cpp\50\lib /Fostruct.obj /Tpstruct.cc
    link @linkopt.lrf
    Error during compilation, aborting.
    END FILE
    Completed compilation for PC NT.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    ex_rep_chan is dependent on the db library, which judging by your printout, has not finished building. Which is odd, since Visual Studio is usually smarter about dependencies. Just rebuild ex_rep_chan and you should be fine.
    Lauren Foutz

  • Fatal error LNK1181: cannot open input file"OLDNAMES.LIB-Reply

    The OLDNAMES.LIB file should be in your Visual C++ library directory (eg c:\Program Files\DevStudio\VC\lib). If you reread TechNote 11431it explains how to set up your LIB environment variable so that the linker can find the appropriate files.
    Regards
    Mark Carruthers
    20th Century Fox
    Herv&eacute; Depoorter <[email protected]> 12/18/98 09:40am >>>
    Hello, everybody.
    My problem is :'fatal error LNK1181: cannot open input file "OLDNAMES.LIB"'
    Somebody can help me?
    Thanks a lot for your assistance.
    I tried to passe a C structure between Forte and C.
    I taked the exemple of fort&eacute; : technote ID : 10637.
    We use Forte 3.0.j.1 and I try the example on a NT4 server.
    There are several projects that make up this application. They are as follows:
    StructExampleGUI - This is this project. It is the GUI front
    (File: StructGu.Pex) end that calls the C wrapper.
    StructSharedObjects - This project defines the Employee object
    (File: StructSh.Pex) that is needed for both the GUI and
    for the StructExampleServices project.
    StructExampleServices - This project defines the StructExample
    (File: StructSO.Pex) services object. This is a restricted
    project whose purpose is to actually call
    the C project.
    StructExampleProject - This is the External C Project that defines
    (File: Struct.Pex) the interface necessary for Forte to generate
    the wrapper code needed to call the C file.
    StructEX.c - This is the C code that is being wrappered. It
    has one function getemployee that modifies an
    input output structure. The memory allocation is
    done by Forte in the StructExampleServices
    project.
    First of all, I compile the StructEx.C
    After, in the Struct.pex, I set the parameter :
    HAS PROPERTY
    CompatibilityLevel = 0;
    ProjectType = LIBRARY;
    Restricted = TRUE;
    MultiThreaded = TRUE;
    LibraryName = 'struct';
    extended = (Externalincludedirectories='e:/Pgmprod/cpp/50/include
    e:/Pgmprod/cpp/50/lib',
    ExternalObjectFiles = 'O:/Herve/ForteAPI/structex');
    I load the struct.pex.
    Double click on the StructExampleProject
    File:Configure As:Library
    Make distibution and select Full make, Install in current Environment & Auto
    Compile
    When I tried this in the first time, I has a probleme with struct.bom. I
    resolved
    that. (technote 11431:Autocompile on NT fails to build the compiled partition)
    But now, I'm another problem (see below) and I don't find the solution.
    Somebody can help me? Thanks a lot for your assistance.
    The problem : Fort&eacute; say 'fatal error LNK1181: cannot open input file
    "OLDNAMES.LIB"'
    BEGIN FILE
    Working directory is e:\pgmprod\forte\30J1\tmp\cg4\pc_nt\struct
    Processing BOM file: struct.bom
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 11.00.7022 for 80x86
    Copyright (C) Microsoft Corp 1984-1997. All rights reserved.
    struct.cc
    Microsoft (R) 32-Bit Incremental Linker Version 5.00.7022
    Copyright (C) Microsoft Corp 1992-1997. All rights reserved.
    /DLL /NOD
    /OUT:struct.dll
    /DEF:struct.nti
    struct.obj
    O:\Herve\ForteAPI\structex.obj
    e:\pgmprod\forte\30J1\install\lib\qqsm.lib
    e:\pgmprod\forte\30J1\install\lib\qqfo.lib
    e:\pgmprod\forte\30J1\install\lib\qqdo.lib
    e:\pgmprod\forte\30J1\install\lib\qqsh.lib
    e:\pgmprod\forte\30J1\install\lib\qqcm.lib
    e:\pgmprod\forte\30J1\install\lib\qqkn.lib
    e:\pgmprod\forte\30J1\install\lib\MSVCRT.LIB
    e:\pgmprod\forte\30J1\install\lib\qqsh.lib
    OLDNAMES.LIB OLDNAMES.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB
    COMDLG32.LIB SHELL32.LIB WSOCK32.LIB NETAPI32.LIB WINMM.LIB ADVAPI32.LIB
    LINK : fatal error LNK1181: cannot open input file "OLDNAMES.LIB"
    cl /W3 /Gf /GX /MD /c /Ob1 /vmg /DSTRICT /DWIN32 /D__WIN32__ /DLIBOO_DLL
    /DWIN32_LEAN_AND_MEAN /Ie:\pgmprod\forte\30J1\install\inc\cmn
    /Ie:\pgmprod\forte\30J1\install\inc\os
    /Ie:\pgmprod\forte\30J1\install\inc\ds
    /Ie:\pgmprod\forte\30J1\install\inc\handles /Ie:\pgmprod\forte\30J1
    /Ie:\Pgmprod\cpp\50\include /Ie:\Pgmprod\cpp\50\lib /Fostruct.obj /Tp struct.cc
    link @linkopt.lrf
    Error during compilation, aborting.
    END FILE
    Completed compilation for PC NT.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    ex_rep_chan is dependent on the db library, which judging by your printout, has not finished building. Which is odd, since Visual Studio is usually smarter about dependencies. Just rebuild ex_rep_chan and you should be fine.
    Lauren Foutz

  • Fatal error C1083: Cannot open type library file: '..\..\bin\TsAdpApi.tlb': No such file or directory

    Hi Folks:
    I am doing one Dll file for TestStand , and got an error : d:\teststand3.5\teststand 3.5\examples\modaldialogs\mfc\tsapivc.h(18) : fatal error C1083: Cannot open type library file: '..\..\bin\TsAdpApi.tlb': No such file or directory
    Could anyone help me out of that ??
    Thanks in advance !

    This type library for the adapter API is embedded in the teapi.dll. If you are using Visual Studio.NET, there is an attribute called tlbid that you can use with the #import directive in order to import that embedded library (see the MSDN documentation for more details). For example:
    #import tlbid(2)
    In VC++ 6.0, there is no way to import embedded type libraries. Therefore, you must use the attached type library file (.tlb) with the #import directive. For example:
    #import "TsAdpApi.tlb"

  • Error     1     fatal error C1083: Cannot open include file: 'boost/config.hpp': No such file or directory     C

    Newbie to VC++
    Getting the below error in VC++ 2005, Indesign CS4
    1>------ Build started: Project: WriteFishPrice, Configuration: Debug Win32 ------
    1>Performing Custom Build Step
    1>Compiling...
    1>WFPNoStrip.cpp
    1>C:\Program Files\Adobe\adobe_indesign_cs4_products_sdk_578win\source\precomp\common\ShukHeaders.cp(19) : fatal error C1083: Cannot open include file: 'boost/config.hpp': No such file or directory
    1>WFPID.cpp
    1>C:\Program Files\Adobe\adobe_indesign_cs4_products_sdk_578win\source\precomp\common\ShukHeaders.cp(19) : fatal error C1083: Cannot open include file: 'boost/config.hpp': No such file or directory
    1>VCPlugInHeaders.cpp
    1>C:\Program Files\Adobe\adobe_indesign_cs4_products_sdk_578win\source\precomp\common\ShukHeaders.cp(19) : fatal error C1083: Cannot open include file: 'boost/config.hpp': No such file or directory
    1>TriggerResourceDeps.cpp
    1>C:\Program Files\Adobe\adobe_indesign_cs4_products_sdk_578win\source\precomp\common\ShukHeaders.cp(19) : fatal error C1083: Cannot open include file: 'boost/config.hpp': No such file or directory
    1>SDKPlugInEntrypoint.cpp
    1>C:\Program Files\Adobe\adobe_indesign_cs4_products_sdk_578win\source\precomp\common\ShukHeaders.cp(19) : fatal error C1083: Cannot open include file: 'boost/config.hpp': No such file or directory
    1>Generating Code...
    1>Build log was saved at "file://c:\id6sdk\build\win\objD\WriteFishPrice\BuildLog.htm"
    1>WriteFishPrice - 5 error(s), 0 warning(s)
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    I have added the path of config.hpp in "addition include directories" still it is throwing the same error.
    Regards,
    Suresh

    Neither the first not the second one:
    am using the following path:
    C:\Program Files\Adobe\adobe_indesign_cs4_products_sdk_578win\external\asl\boost_libraries\boost
    Now i have copied the complete 'external' folder to C:\id6sdk\ and added the directory now it is showing the following error:
    Getting the following error:
    fatal error C1083: Cannot open include file: 'IPMUnknown.h': No such file or directory C:\Program Files\Adobe\adobe_indesign_cs4_products_sdk_578win\source\precomp\common\ShukHeaders.cp 46
    Don't understand the concept one error leading to the other error.
    How to come out of these kind of problem.
    Regards,
    Suresh

  • Fatal error 78: Cannot connect to User Group LDAP Server

    After configuring Calendar server when trying to start:
    give following error:
    # ./start-cal
    Restarting calendar services
    Stopping all calendar services
    Starting all calendar services
    # enpd is started
    csnotifyd is started
    csadmind is started
    Fatal error 78: Cannot connect to User Group LDAP Server
    cshttpd is not started
    Calendar service(s) not started
    cshttpd is not started
    Calendar service(s) not started
    Following logs are from http logs of calendar server
    [13/Sep/2004:22:02:47 +0100] Vigor11 cshttpd[17916]: General Information: Log created (1095109367)
    [13/Sep/2004:22:02:47 +0100] Vigor11 cshttpd[17916]: General Notice: Sun Java System Calendar Server 6 2004Q2 (built Apr 28 2004) cshttpd starting up
    [13/Sep/2004:22:02:47 +0100] Vigor11 cshttpd[17916]: General Notice: cshttpd attempting to open Counters Database
    [13/Sep/2004:22:02:47 +0100] Vigor11 cshttpd[17916]: General Notice: cshttpd successfully opened the Counters Database
    [13/Sep/2004:22:02:48 +0100] Vigor11 cshttpd[17916]: General Notice: HTTP Module is refreshing
    [13/Sep/2004:22:02:48 +0100] Vigor11 cshttpd[17916]: General Notice: cshttpd is refreshing
    [13/Sep/2004:22:02:48 +0100] Vigor11 cshttpd[17916]: General Notice: cshttpd is refreshed
    [13/Sep/2004:22:02:48 +0100] Vigor11 cshttpd[17916]: General Notice: HTTP Module has refreshed
    [13/Sep/2004:22:02:48 +0100] Vigor11 cshttpd[17916]: General Notice: cshttpd: argc=3 argv[0]=/opt/SUNWics5/cal/lib/cshttpd
    [13/Sep/2004:22:02:48 +0100] Vigor11 cshttpd[17916]: General Notice: session_init: attempting to open session database for cshttpd
    [13/Sep/2004:22:02:49 +0100] Vigor11 cshttpd[17916]: General Notice: session_init: session database open completed for cshttpd
    [13/Sep/2004:22:02:49 +0100] Vigor11 cshttpd[17916]: Store Critical: Error checking session database: DB->set_alloc: method not permitted in shared environment
    [13/Sep/2004:22:02:49 +0100] Vigor11 cshttpd[17916]: General Notice: LdapCacheInit: Ldap Cache not enabled.
    [13/Sep/2004:22:02:49 +0100] Vigor11 cshttpd[17916]: General Notice: cshttpd_parse_commandline: successfully bind process 17916 to processor 0
    [13/Sep/2004:22:02:49 +0100] Vigor11 cshttpd[17916]: General Critical: Fatal error 78: Cannot connect to User Group LDAP Server
    Have any body seen this before.
    Regards

    The server was running fine for few months until i restarted the calendar server. i started to see the same error and the problem was the machine name got changed at some point.
    I added the old hostname to the /etc/hosts file and restarted the calender server and it started to work fine.

  • DB Connect Error: Database cannot be reached

    Hi All,
    We are connecting an external database to BI system through DB connect.
    The external database is now upgraded. So the connection parameters have to be changed for this database.
    I have changed it in the BI system. I went to source system -> connection parameters.
    There I have provided the DB Connection
    DBMS
    User Name
    DB password
    Conn. info
    Connection Limi
    Optimum Conns accordingly.
    But still I am getting the error : Database cannot be reached upon checking.
    According to my understanding the new IP of the database server has to be updated in some tns file.
    But I am not sure where this file resides.We have updated the IP in tns file of database server.
    For example my database server is 'X' and application server is 'Y', in which server the tns file resides and where should the IP be updated.
    Could someone please guide me with this.
    Regards,
    Shravani Reddy

    Hi Luis,
    You need to activate ags_workcenter in SICF so that you will be able to access url  http://><server>:8001/sap/bc/webdynpro/sap/ags_workcenter
    Thank you,
    Ice

  • Unable to Build VC++ application it showing error 1 LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib' but I am Using Measurement Studio 2009 ,NI DAQ 7.01 and Field Point 6.05.

    I am having a application in Visual Studio 2003 on Windows XP  , Now I am Migrating the application in Visual Studio 2005 on Windows-7 .
    In my Development PC , I was install Measurement Studio 2009 ,  NI DAQ 7.01 and Field Point 6.05.
    my application is Showing following error:
    Linking...
    LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib'
    Build log was saved at "file://c:\EdacsNt\Source\SaftyServices\NICfpDAQDl?l\Debug\BuildLog.htm"
    NICfpDAQDll - 1 error(s), 0 warning(s)
    When I copy from NiFieldPoint71D.lib library from Measurement Studio 7.1 and put in :\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib.
    my application is Showing following error:
    1>Linking...
    1>atlsd.lib(atltrace.obj) : error LNK2005: "unsigned int (__stdcall* ATL::g_pfnGetThreadACP)(void)" (?g_pfnGetThreadACP@ATL@@3P6GIXZA) already defined in NiFieldPoint71D.lib(StdAfx.obj)
    1>atlsd.lib(atlbase.obj) : error LNK2005: "class ATL::CAtlWinModule ATL::_AtlWinModule" (?_AtlWinModule@ATL@@3VCAtlWinModule@1@A) already defined in NiFieldPoint71D.lib(StdAfx.obj)
    1>   Creating library ..\..\lib\debug\NICfpDAQDll.lib and object ..\..\lib\debug\NICfpDAQDll.exp
    1>..\..\bin\debug\NICfpDAQDll.dll : fatal error LNK1169: one or more multiply defined symbols found
    I want to ignore NiFieldPoint71D.lib from using project setting(Linker->Input->ignore Specific Library ) but still it is showing same error.
    In the project Setting I am done following setting:
    "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"
    C:\Program Files\National Instruments\NI-DAQ\Lib"
    Linker->Input->ignore Specific Library: mfcs71d.lib;libc.lib;'NiFieldPoint71D.lib
    Please provide some solution.
    Thanks
    Nityanand

    You posted this in the LabVIEW forum.
    Are you programming in LabVIEW?
    There is a separate Measurement Studio for VC++ forum. http://forums.ni.com/t5/Measurement-Studio-for-VC/bd-p/231

  • Unable to Build VC++ applicatio​n it showing error 1 LINK : fatal error LNK1104: cannot open file 'NiFieldPo​int71D.lib​' but I am Using Measuremen​t Studio 2009

    I am Migrating a application in Visual Studio 2005.
    In my development PC I was install the Measurement Studio 2009
    my application is Showing following error:
    1>Linking...
    1>LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib'
    1>Build log was saved at "file://c:\EdacsNt\Source\SaftyServices\NICfpDAQDll\Debug\BuildLog.htm"
    1>NICfpDAQDll - 1 error(s), 0 warning(s)
    In the project Setting I am done following setting
    "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"
    C:\Program Files\National Instruments\NI-DAQ\Lib"
    but in  "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"  directory Not having the 'NiFieldPoint71D.lib' because Measurement Studio 2009 not provide this dll.
    Please provide some solution.
    Thanks
    Nityanand

    You posted this in the LabVIEW forum.
    Are you programming in LabVIEW?
    There is a separate Measurement Studio for VC++ forum. http://forums.ni.com/t5/Measurement-Studio-for-VC/bd-p/231

  • Unable to Build VC++ application it showing error 1 LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib' but I am Using Measurement Studio 2009

    I am Migrating a application in Visual Studio 2005.
    In my development PC I install the Measurement Studio 2005.
    my application is Showing following error:
    1>Linking...
    1>LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib'
    1>Build log was saved at "file://c:\EdacsNt\Source\SaftyServices\NICfpDAQDll\Debug\BuildLog.htm"
    1>NICfpDAQDll - 1 error(s), 0 warning(s)
    In the project Setting I am done following setting
    "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"
    C:\Program Files\National Instruments\NI-DAQ\Lib"
    but in  "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"  directory Not having the 'NiFieldPoint71D.lib' because Measurement Studio 2009 not provide this dll.
    Please provide some solution.
    Thanks
    Nityanand

    You posted this in the LabVIEW forum.
    Are you programming in LabVIEW?
    There is a separate Measurement Studio for VC++ forum. http://forums.ni.com/t5/Measurement-Studio-for-VC/bd-p/231

  • Fatal error 70: Cannot open calendar database

    When I try to start my iPlanet Calendar Server(iCS) 5.0, the following error
    occurs:
    <P>
    Fatal error 70: Cannot open calendar database
    When this error occurs, first try to recover the database using the
    "csdb" command line
    utility. For more information on the
    csdb utility, please
    refer to the iCS 5.0 documentation at the following URL:
    <P>
    http://docs.iplanet.com/docs/manuals/calendar/ics50/ag/calagxa.htm#13586
    <P>
    If you are unable to recover the database using the
    csdb utility, use the
    following steps:
    <OL>
    <LI>Completely shut down the calendar server to ensure that there are no
    stray calendar processes still running.
    <P>
    <LI>Change directory to your iCS database directory (the default directory
    on Solaris is
    /var/opt/SUNWics5/csdb/).
    <P>
    cd /var/opt/SUNWics5/csdb/
    <P>
    <LI>Create a temp
    directory.
    <P>
    mkdir temp
    <P>
    <LI>Move all of the
    *.share files to the
    temp directory.
    <P>
    mv *.share temp/
    <P>
    <LI>Restart the calendar server.
    <P>
    <B>Note:</B> The *.share
    files will be rebuilt upon startup.
    </OL>
    <P>

    theFatal error 70: Cannot open calendar database error can occur after a migration from Netscape calendar server, using the ncs4migrate utility.
    The problem can be that the log* files in the csdb folder (or wherever you put the calendar database) are not owned by the same user that runs the calendar server - commonly called icsuser.
    ie.
    -rw-r----- 1 root other 5499425 Jun 25 14:17 log.0000000142
    will cause fatal error 70:
    change the owner, thus
    -rw-r----- 1 icsuser2 icsgroup2 5499425 Jun 25 14:17 log.0000000142
    and it should work!
    Regards,
    - jd

  • Fatal Error Adobe cannot connect to a DDE server.

    Just started getting this error message "Fatal Error Adobe cannot connect to a DDE server." Can save files to PDF but then cannot open them. Using current Adobe 11 with Windows 8, using Norton Security Suite. Sometimes it will say Fatal error Adobe and at other times it will say Acrobat.

    Hi snowbird1,
    Thank You for posting on the forums. The probable cause of the error is, multiple processes of Acrobat/Reader running in the background.
    Kindly follow the steps mentioned below and check, if it helps.
    1) Press CTRL+ALT+DEL together
    2) Go to the Task Manager
    3) Go to Processes in the Task Manager and kill al the processes related to Acrobat/Reader.
    4) Launch Reader/Acrobat (It should launch without an error).
    To further isolate the issue you might want to run Acrobat/Reader in an environment where no other services are running.
    This can be achieved via "MSCONFIG"
    1) Click on start type run
    2) Type MSCONFIG in the run prompt
    3) Go to services and click on hide all Microsoft services
    4) Click disable all
    5) Go to the startup in configuration window and disable all startup items
    6) Restart your system
    7) Launch Acrobat/Reader
    If, it is launched without an error, a service on your system is conflicting with Acrobat/Reader.
    Thanks,
    Vikrantt Singh

Maybe you are looking for

  • TS2972 I downloaded text me ap from the itunes store onto my computer but it won't open, how do I use it?

    Hello I just downloaded "text me" ap from the itunes store to my desktop computer, but it won't open!!  How do I use it?  I tried right clicking and double clicking but nothing happens... Please advise. Corinne

  • Posting count

    I lost nearly 500 previous postings and my posting count did start at 0 two months ago. Is this a problem only of my account, or had all discussion members to restart at 0? Thanks!! Andreas

  • Download to multiple excel sheets in the backgraoud

    Hi, I am trying to download data into multiple excel sheets in the background. I was able to create comma delimited csv file in the server, which can be opened as excel file. This is good when it does not have more that one worksheets. I have three i

  • Login on Creative Desktop App fail

    If I login on the Creative Cloud Desktop App, I became "logged out, login to continue". I reinstalled the cloud two times, but nothing change. Login in with my Browser with the same Userdata works fine. I am using the creative cloud on my Windows PC

  • Copy of SAP ESS objects to new namespace

    Hi, I need to take a copy of SAP ESS objects to new namespace and later want to do customization in the new object. I have requirement in which I do not want to change SAP delivered objects (sap.com) Scenario: (1)     Original object namespace: essca