Problem in Using OLE Container

Sir I have development an ActiveX in VB for urdu in oracle forms.
The problems I am facing is that it is storing the input efficiently but
when I Query the saved data it is not working,
I got an Error that OLE Object not defined for the current record.
It create the OLE object for a new record and take input & save it
But as I assign the retrieved Data in Post Query, it give error object not
defined.
At the same time it display out when assign with when button pressed.
the code that is working is for saving in the database is at save button (when
button pressed)
DECLARE
VEN_IDp OLE2.OBJ_TYPE;
VEN_NAMEp OLE2.OBJ_TYPE;
ADD1p OLE2.OBJ_TYPE;
CITYp OLE2.OBJ_TYPE;
ZIPCODEp OLE2.OBJ_TYPE;
STATEp OLE2.OBJ_TYPE;
COUNTRYp OLE2.OBJ_TYPE;
PHONE1p OLE2.OBJ_TYPE;
PHONE2p OLE2.OBJ_TYPE;
MOBILEp OLE2.OBJ_TYPE;
FAXp OLE2.OBJ_TYPE;
ECOMMENTSp OLE2.OBJ_TYPE;
n1 NUMBER;
V1 VARCHAR2(255);
V2 VARCHAR2(255);
V3 VARCHAR2(255);
V4 VARCHAR2(255);
V5 VARCHAR2(255);
V6 VARCHAR2(255);
V7 VARCHAR2(255);
V8 VARCHAR2(255);
V9 VARCHAR2(255);
V10 VARCHAR2(255);
V11 VARCHAR2(255);
V12 VARCHAR2(255);
BEGIN
--creating pointers to the activeX's
VEN_IDp := FORMS_OLE.GET_INTERFACE_POINTER('VEN_IDU');
VEN_NAMEp := FORMS_OLE.GET_INTERFACE_POINTER('VEN_NAMEU');
ADD1p := FORMS_OLE.GET_INTERFACE_POINTER('ADD1U');
CITYp := FORMS_OLE.GET_INTERFACE_POINTER('CITYU');
ZIPCODEp := FORMS_OLE.GET_INTERFACE_POINTER('ZIPCODEU');
STATEp := FORMS_OLE.GET_INTERFACE_POINTER('STATEU');
COUNTRYp := FORMS_OLE.GET_INTERFACE_POINTER('COUNTRYU');
PHONE1p := FORMS_OLE.GET_INTERFACE_POINTER('PHONE1U');
PHONE2p := FORMS_OLE.GET_INTERFACE_POINTER('PHONE2U');
MOBILEp := FORMS_OLE.GET_INTERFACE_POINTER('MOBILEU');
FAXp := FORMS_OLE.GET_INTERFACE_POINTER('FAXU');
ECOMMENTSp := FORMS_OLE.GET_INTERFACE_POINTER('ECOMMENTSU');
--getting new value returned by the ActiveX
N1 :=Project1_UserControl1.getUrduText(VEN_IDp);
V2 :=Project1_UserControl1.getUrduText(VEN_NAMEp);
V3 :=Project1_UserControl1.getUrduText(ADD1p);
V4 :=Project1_UserControl1.getUrduText(CITYp);
V5 :=Project1_UserControl1.getUrduText(ZIPCODEp);
V6 :=Project1_UserControl1.getUrduText(STATEp);
V7 :=Project1_UserControl1.getUrduText(COUNTRYp);
V8 :=Project1_UserControl1.getUrduText(PHONE1p);
V9 :=Project1_UserControl1.getUrduText(PHONE2p);
V10 :=Project1_UserControl1.getUrduText(MOBILEp);
V11 :=Project1_UserControl1.getUrduText(FAXp);
V12 :=Project1_UserControl1.getUrduText(ECOMMENTSp);
assigning the value to database item for saving
:VEN_ID := N1;
:VEN_NAME :=V2;
:ADD1 := V3;
:CITY :=V4;
:ZIPCODE :=V5;
:STATE :=V6;
:COUNTRY:=V7;
:PHONE1 :=V8;
:PHONE2 :=V9;
:MOBILE :=V10;
:FAX :=V11;
:ECOMMENTS :=V12;
END;
-- It save the record successfully
and the code not working at (post query OR timer expired created at post query)
It query the data from database and display it in the textitem but I want to
assign it to ActiveX for Urdu Display
(the activeX display Urdu for assiged value in button pressed case)
DECLARE
VEN_IDp OLE2.OBJ_TYPE;
VEN_NAMEp OLE2.OBJ_TYPE;
ADD1p OLE2.OBJ_TYPE;
CITYp OLE2.OBJ_TYPE;
ZIPCODEp OLE2.OBJ_TYPE;
STATEp OLE2.OBJ_TYPE;
COUNTRYp OLE2.OBJ_TYPE;
PHONE1p OLE2.OBJ_TYPE;
PHONE2p OLE2.OBJ_TYPE;
MOBILEp OLE2.OBJ_TYPE;
FAXp OLE2.OBJ_TYPE;
ECOMMENTSp OLE2.OBJ_TYPE;
V1 VARCHAR2(255);
V2 VARCHAR2(255);
V3 VARCHAR2(255);
V4 VARCHAR2(255);
V5 VARCHAR2(255);
V6 VARCHAR2(255);
V7 VARCHAR2(255);
V8 VARCHAR2(255);
V9 VARCHAR2(255);
V10 VARCHAR2(255);
V11 VARCHAR2(255);
V12 VARCHAR2(255);
str1 VARCHAR2(255);
str2 VARCHAR2(255);
str3 VARCHAR2(255);
str4 VARCHAR2(255);
str5 VARCHAR2(255);
str6 VARCHAR2(255);
str7 VARCHAR2(255);
str8 VARCHAR2(255);
str9 VARCHAR2(255);
str10 VARCHAR2(255);
str11 VARCHAR2(255);
str12 VARCHAR2(255);
BEGIN
SYNCHRONIZE;
VEN_IDp := FORMS_OLE.GET_INTERFACE_POINTER('VEN_IDU');
VEN_NAMEp := FORMS_OLE.GET_INTERFACE_POINTER('VEN_NAMEU');
ADD1p := FORMS_OLE.GET_INTERFACE_POINTER('ADD1U');
CITYp := FORMS_OLE.GET_INTERFACE_POINTER('CITYU');
ZIPCODEp := FORMS_OLE.GET_INTERFACE_POINTER('ZIPCODEU');
STATEp := FORMS_OLE.GET_INTERFACE_POINTER('STATEU');
COUNTRYp := FORMS_OLE.GET_INTERFACE_POINTER('COUNTRYU');
PHONE1p := FORMS_OLE.GET_INTERFACE_POINTER('PHONE1U');
PHONE2p := FORMS_OLE.GET_INTERFACE_POINTER('PHONE2U');
MOBILEp := FORMS_OLE.GET_INTERFACE_POINTER('MOBILEU');
FAXp := FORMS_OLE.GET_INTERFACE_POINTER('FAXU');
ECOMMENTSp := FORMS_OLE.GET_INTERFACE_POINTER('ECOMMENTSU');
--function setUrduText(interface oleobj,text in out varchar2) Return varchar2
This function Displays Urdu when value is assigned in when button pressed event
str1 :=Project1_UserControl1.setUrduText(VEN_IDp,:VENDOR.VEN_ID);
str2 :=Project1_UserControl1.setUrduText(VEN_NAMEp,:VENDOR.VEN_NAME);
str3 :=Project1_UserControl1.setUrduText(ADD1p,:VENDOR.ADD1);
str4 :=Project1_UserControl1.setUrduText(CITYp,:VENDOR.CITY);
str5 :=Project1_UserControl1.setUrduText(ZIPCODEp,:VENDOR.ZIPCODE);
str6 :=Project1_UserControl1.setUrduText(STATEp,:VENDOR.STATE);
str7 :=Project1_UserControl1.setUrduText(COUNTRYp,:VENDOR.COUNTRY);
str8 :=Project1_UserControl1.setUrduText(PHONE1p,:VENDOR.PHONE1);
str9 :=Project1_UserControl1.setUrduText(PHONE2p,:VENDOR.PHONE2);
str10 :=Project1_UserControl1.setUrduText(MOBILEp,:VENDOR.MOBILE);
str11 :=Project1_UserControl1.setUrduText(FAXp,:VENDOR.FAX);
str12 :=Project1_UserControl1.setUrduText
END;
I am not getting the point that why the Error OLE object not defined occur in
display case where as in new record the object is activited on new record
instane by itself but not in post query
I am working on application of a library with Urdu data and at last step Iam
facing the problem above PLs guide me
Thanks in advance
null

Hi,
- I am using Oracle Forms [32 bit] Versión 5.0.6.23.1 and Oracle 8i Enterprise Edition Release 8.1.7.0.0 as database.
- The process can be reproduced in a stand alone form. You need to access a table with a RAW column in which the file is stored and put that column in an OLE Container.
- It works with filetypes .xls, .doc, .pdf but (sometimes, not always) not with filetype .TIF (with an MS Imaging program associated).
- I have 2 errors:
- "No se puede encontrar el archivo 'C:\DOCUME~1\CAPEST~1\CONFIG~1\Temp\PKGnnn.TIF' (o uno de sus componentes). Asegúrese de que la ruta y el nombre de archivo son correctos y de que todas las bibliotecas está disponibles." This would be something like "The file 'C:\DOCUME~1\CAPEST~1\CONFIG~1\Temp\PKGnnn.TIF' (or one of its components) can be found. Be sure that the path and the filename are corrects and all the libraries are ready".
- "No se puede abrir el archivo 'C:\DOCUME~1\CAPEST~1\CONFIG~1\Temp\PKGnnn.TIF'. Compruebe el nombre de archivo y los permisos." ("The file 'C:\DOCUME~1\CAPEST~1\CONFIG~1\Temp\PKGnnn.TIF' can´t be open. Check the filename and the grants."
I hope this help.
Edited by: Valla1 on Jan 21, 2009 8:40 AM
The problem was that the field was mouse navigable.

Similar Messages

  • FRM 40010 after using Ole container

    Hi,
    I am using an OLE container item to store different file types on Oracle 9 DB using Forms 6.0.8.27.0 .
    Whenever I save a document using the ole container, exit the form, I cannot run any other form from my application. I get FRM-40010 :'Cannot read form XXX'
    If I restart the application everything works fine until I use the ole container again to save a file. Then I get the same error.
    It seems that the ole container changes the working directory.
    Forms60_Path is set correctly.
    Inserting a file from the correct working directory and deleting it (just to let the ole container changes the working directory to the one I want) is not a practical solution.
    Thanks in advance for any hints,
    Marco.

    David,
    not sure if this is a bug, because if you don't specify the '.rep' then, because of the search order used, the rep file is used anyway if available in the Reports_Path. One thing that could happen though is that your application now picks up an rdf file (maybe in the Reports60 directory) because the rep file is read later. Please check how many occurences of teh report file you have.
    Repeatingly calling run_product will issue the same job to the Reports runtime over and over. The Reports runtime is not able to handle multiple jobs in parallel, one at a time. This means that if the Reports runtime is busy the Reports execution has to wait if not crahsing. The rdf file - if used - wins soem time in that it gets compiled on te fly before getting executed.
    Frank
    Ps.: Will not deny the chance of a bug, but Forms60 is desupported and you won't get a fix for i

  • How can I read a blob created with ole container in forms 6i in forms 10g

    In forms 6i I used ole container to save a document (excel, pdf, word...) into a blob column.
    I want to migrate my application in forms 10g and I read that I have to use webutil_File_transfer.db_to_client and after webutil_host.blocking to see the document.
    In the same blob column I can have multiple type of document. How Can I know wich application to use to open the document ?
    Even if I know the extension of my document I'm enabled to open the file ???

    When you click a C/S OLE object, it is opened with its default application's owner, no ?
    So if the OLE object is opened by Excel, the extension is .xls.
    In any case you have to open the OLE object with its "mother" application if you want to save it as a file, so there is no problem at all to decide with extension to use.
    If you read this article : http://sheikyerbouti.developpez.com/webutil-docs/Webutil_store_edit_docs.htm you can see that the filename is automatically opened with the corresponding application.
    Francois

  • Retriving a blob after it was loaded by OLE container in forms 6i

    We had forms6i application which has loaded documents into a blob column in the database using OLE container. We are able to retrive the blob from the OLE container on the forms6i, However when we are trying to retrive the same blob using PL/sql into the OS level file , we are unable to open the file as it not able to de-serialize the blob loaded into the database by an OLE container on the forms 6i
    we have loaded around 5000 documents in the database using forms 6i application.
    These were loaded during normal application usage and added mannually by invoking the forms application and then saving.
    Our requirement is now to retrive these documents all at once using automated scripts. if Blob data is inserted using forms 6i OLE container then is there any automated exteneded procedures to retrive those blobs using PL SQL script or any other method.
    my Forms version:Forms 6.0.8.25
    My Databae : Oracle database 10.2.0.4
    Thanks in advance.

    When you click a C/S OLE object, it is opened with its default application's owner, no ?
    So if the OLE object is opened by Excel, the extension is .xls.
    In any case you have to open the OLE object with its "mother" application if you want to save it as a file, so there is no problem at all to decide with extension to use.
    If you read this article : http://sheikyerbouti.developpez.com/webutil-docs/Webutil_store_edit_docs.htm you can see that the filename is automatically opened with the corresponding application.
    Francois

  • Path of inserted file in OLE container

    I used OLE container in the forms. Now I need to extract the path of the inserted file as well
    How do i do it?

    Hi Krishana,
    Please look at .ear file is available under this path.
    This is for local DCu2019s path
    C:\Documents and Settings\XYZ(UserName)\.dtc\1\DCs\com.compname(Package Name)\demo\mrcf\_comp\gen\default\deploy----Here .ear file is available.
    This is for normal WDJAVA Application .ear file.
    Here that .ear file is available  in under Project folder only.
    U can take .ear file here and then send to BASIS team.theu will deploye the QA and PRO Systems by using SDM
    I hope this is help full for you,
    Regards
    Vijay

  • Some Problems in Using Region Containers

    Hi,
    I have some problems in using region container which looks like bugs to me :
    1- I added 2 Item Regions to one group in app def and dragged some items into them.Then, I decided to have a region container and arrange these 2 item regions horizontally. I added a Region Container and drag the 2 Item Regions into it. in this case, all the fields in these Item Regions disappeared and I did not have control over them.
    2- If I first create a Region Container and then put a region item in it and then drag some attributes into region item everything will be fine but if I change my mind and decide not to have region container and drag region item from region container into regions, again all fields in the region item will disappear.
    3- I created a region container and added 2 region items to it and dragged some items into them. I set the layout style to horizontal and set the width of region container to 100% but I realized that regardless of width value I set, the page arrangement was always the same. I investigate the jspx file and found out that the width of region container was not set. I added width="$JHS.current.regionContainer.width" to "<afh:tableLayout" section in horizontalRegionContainer.vm and it then worked fine. I believe that this part is forgotten to be in the vm file.
    Best Regards,
    Navid

    Navid,
    regarding 1 and 2: This only happens when you add items to an item group and start to drag and drop the item region BEFORE you click the Apply button. If you click the Apply
    button before you move item groups around, it works fine.
    3: yes, this is a bug, we will add fix in next release. Thanks for reporting.
    Steven Davelaar,
    JHeadstart team.

  • Forms 6i : Ole Container : Locking problem

    We have a form in which user can attach all sorts of documents that are then saved in the database.
    Once in a while we have a locking problem; when 2 users try to open the same document, the second one first gets a 'Could not reserve record (2 tries). Keep trying?'. When clicking 'No', the next error message is 'Frm-40501 : unable to reserve record for update or delete', and the form cannot be used anymore. He keeps complaining about the reserved record.
    I've been looking into this problem but cannot seem to find a lot of help.
    Does anyone have an idea how to solve this locking problem?
    I have tried the following things:
    * setting the block to locking mode 'Delayed' => we ended up having duplicate records.
    * Changing properties of the ole-container (In Place Activation, Inside Out support, ...).
    Forms version is 6.0.8.13.0, database 8.0.6.0.0.
    Any help is appreciated.

    that seems to be a normal locking problem. Do you have tried to work with an ON-LOCK trigger ? (e.g. first to see, when locking will occur, second for implementing an own locking-behaviour, maybe with a SELECT for UPDATE)
    Or do you think, that there is something special with your OLE-programming ?
    Gerd

  • Making use of 'obsolete' OLE container in Forms10g

    I have a column in a database table of type LONG RAW . This column was represented as an OLE Container - which in 10g is obsolete - in a form (Forms 6i). Trying to compile this form to Forms10g , I receive an error FRM-30454.
    Is it possible to retain the form as it is , by simply change a property , ....
    Anyway , What are the possible solutions for this kind of problem?
    Thanks , Simon

    What is the role of 'Importing OLE Library Interfaces' which is a menu selection found on Forms Builder menu->Program->Import OLE Library Interfaces?
    How is there the capability to import for example 'Word.Document' OLE classes as OLE containers are obsolete?
    Is there an example on how to use them...?
    I didn't find anything -only directions on how to import- in the on-line help of Forms 10g!!!
    Thanks ,
    Simon

  • Problems with OLE Container in QUERY

    Hi all,
    I have problem with OLE Container when I am trying to retrieve data from the database. Inserting is no problem and commit is done. I am doing it with
    initialize_container('block.ole_object','C:\test.doc');
    I have only one column of BLOB type and it is last in the block as it was suggested somewhere on the forum.
    When I am trying to retrieve the already inserted data I get error with the following
    Description:
    FRM-40505: Oracle ERROR: unable to perform query and CTRL+F1 says the following:
    ORA-00932: inconsistent data types: expected got
    The forms and the database are as follow:
    Forms [32 Bit] Version 6.0.8.24.1 (Production)
    Oracle Database 10g Enterprise Edition Release 10.1.0.4.2 - Production
    I need immediate help!!!

    This may be related to the 10g database, I'm not sure as there is no way for me to test it. I know that it works with a 9i database.
    One thing to check is to make sure that you don't have the FORMS60_DISABLE_DESCRIBE set to 1 within the Oracle registry.
    If this doesn't work, your only option might be to use a LONG RAW instead of a BLOB column type in the database.

  • Using RealPlayer control in OLE container to play video

    Hi everyone,
    I am a student and I want to use Oracle OLE control in Oracle forms to implement some multimedia data. I choose RealPlayer G2 control / Window media Player / even Oracle Video Control to do this. But I have one common problem that I can't insert those control object in the OLE container automatically(in the designer).
    How can I have the multimedia control object start when forms runtime?
    Also, how can I store and retrieve data using that multimedia control object?
    Anyone can help me?
    Thx.
    Carol

    Hello,
    I have a similar problem. I want to extract a blob filed with ole from forms with other tools to a file, but the new file then has extra informations about the ole-object. Due to MetaLink there seems to be no possibility to strip these extra bytes off the data.
    Please let me know if you have a solution to this problem.
    Greetings,
    Thorsten.

  • Problem when using About Operator in Contains Query

    Hi,
    I'm new to Oracle and this forums too. I have a problem when using about operator in contains query.
    I create a table with some records and then create a context index on 'name' column.
    CREATE TABLE my_items (
      id           NUMBER(10)      NOT NULL,
      name         VARCHAR2(200)   NOT NULL,
      description  VARCHAR2(4000)  NOT NULL,
      price        NUMBER(7,2)     NOT NULL
    ALTER TABLE my_items ADD (
      CONSTRAINT my_items_pk PRIMARY KEY (id)
    CREATE SEQUENCE my_items_seq;
    INSERT INTO my_items VALUES(my_items_seq.nextval, 'Car', 'Car description', 1);
    INSERT INTO my_items VALUES(my_items_seq.nextval, 'Train', 'Train description', 2);
    INSERT INTO my_items VALUES(my_items_seq.nextval, 'Japan', 'Japan description', 3);
    INSERT INTO my_items VALUES(my_items_seq.nextval, 'China', 'China description', 4);
    COMMIT;
    EXEC ctx_ddl.create_preference('english_lexer','basic_lexer');
    EXEC ctx_ddl.set_attribute('english_lexer','index_themes','yes');
    EXEC ctx_ddl.set_attribute('english_lexer','theme_language','english');
    CREATE INDEX my_items_name_idx ON my_items(name) INDEXTYPE IS CTXSYS.CONTEXT PARAMETERS('lexer english_lexer');
    EXEC ctx_ddl.sync_index('my_items_name_idx');Then I perform contains query to retrieve record :
    SELECT count(*) FROM my_items WHERE contains(name, 'Japan', 1) > 0;
    COUNT(*)
          1
    SELECT count(*) FROM my_items WHERE contains(name, 'about(Japan)', 1) > 0;
    COUNT(*)
          1But the problem is when I using ABOUT operator like in Oracle's English Knowledge Base Category Hierarchy it return 0
    SELECT count(*) FROM my_items WHERE contains(name, 'about(Asia)', 1) > 0;
    COUNT(*)
          0
    SELECT count(*) FROM my_items WHERE contains(name, 'about(transportation)', 1) > 0;
    COUNT(*)
          0I can't figure out what 's wrong in my query or in my index.
    Any help will be appreciated.
    Thanks,
    Hieu Nguyen
    Edited by: user2944391 on Jul 10, 2009 3:25 AM

    Hello (and welcome),
    You'd be best asking this question in the Oracle Text forum, here:
    Text
    And by the way, it will help others to analyse if you put {noformat}{noformat} (lowercase code in curly brackets) before and after your code snippets.
    Good luck!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Using an OLE container to store MS word files

    Hello,
    We are using OLE containers in Forms 6 to store word documents. Occasionally documents seem to be coruppted and can not be opened. I exported document back to a file useing TOAD but the file seems to have a bunch of extra header info added by forms. Anyone know what this is and if it can be stripped off?
    null

    Hello,
    I have a similar problem. I want to extract a blob filed with ole from forms with other tools to a file, but the new file then has extra informations about the ole-object. Due to MetaLink there seems to be no possibility to strip these extra bytes off the data.
    Please let me know if you have a solution to this problem.
    Greetings,
    Thorsten.

  • I have a problem in formatting cells in Excel while using OLE method.

    Hi All,
    I have a problem in formatting cells in Excel while using OLE method.
    My requirement is to have certain fields of a cell as text and amount fields should be in number format.
    How to format a cell in Excel in OLE method of downloading data to excel.
    For example I have plant field whose value is 0002 in internal table while coming to excel it is showing as 2 .
    I want that field to be shown as 0002.(text format)
    Material field whose value in internal table is 000000000000000051 is shown as 51 which has to be shown as
    000000000000000051.(text format).
    Amount field should be in number format so that totalling is possible .
    So I need some cells in text format and some in number format.
    Please suggest a sloution.
    Thanks in advance,
    Regards,
    vidyulatha.U

    https://forums.sdn.sap.com/click.jspa?searchID=21931962&messageID=6852860
    hope this helps.

  • Problem  in  excel  download using  OLE concept

    Hi ,
        i am trying to  create two sheets using OLE concept.
    i am able to create the excel successfully but i can't save it .
    i have one problem .
    GET PROPERTY OF excel 'ActiveSheet' = sheet.
    CALL METHOD OF sheet 'FILESAVEAS' EXPORTING #1 = w_filename1.
    IF sy-subrc eq 0.
    the sy-subrc value comes as  2.
    i am passing 'C:\SKD.XLS'  to  w_filename.
    is anything wrong.
    how can check  this method  and it's exceptions.

    i am getting the file name from user input using the  method
    *"Calling method for getting file name as saved by the user.
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          window_title         = w_title
        CHANGING
          filename             = w_filnam
          path                 = w_path
          fullpath             = w_filename1
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
    w_filename1 is of sting type .
    i am passing the  full  path to  it .
    please  let  me  i am doing anything wrong .

  • Opening pdf file in ole container in forms 6i

    Dear Sir,
    I have am working on Rental property system , i have to save the PDF of original agreement document along with the agreement transaction data entry form, but when i open those agreement in adobe writer there is issue that user can save as its copy to the local machine, to prevent it i m opening that pdf file into the OLE container rather than adobe reader software.
    but the problem i am facing is that, the pdf is opening in the ole container but it is only showing its first page only even if the agreement is of multiple pages, how can navigate to other pages? any idea? the sample code of oracle form is attached herewith which i am using for loading the pdf into ole container.
    waiting for your earliest response.
    Regards

    You need to switch from using VB6 at this point.  As of the latest update, VB6 compiled applications will stop working with Adobe Reader. See the following KB: 
    PDF applications built with VB6 don't work with Acrobat 11.0.07

Maybe you are looking for

  • Problem with RFC connection - tp program not registered

    Hello everyone recently there  has appeared a problem with the RFC connection on our system - we received the following set of messages: Trace file opened at 20101221 130738 Central European Standard Time, SAP-RE ======> CPIC-CALL: 'ThSAPOCMINIT' : c

  • Direct to shipment  to Customer

    I have one functional Problem and is as follows My client manufactures machines , that machines consist of several part , some time my client Sales a machine with some part pending .  This pending parts can be shipped latter.Some times what my client

  • Incorrect Block Length error when configuring SSL

    Hello, gurus: I am messing around with SSL configurations on WebLogic 6.0.2. I have generated a CSR, and located my non-password protected private key and CSR files to the /config/[my_test_domain] folder. I have received my test cert from VeriSign, w

  • Can we able to add a print option to Dashbaord section?

    we have a option to print individual request on the dashboad and dashboard page. the same way, Is it possible to print a individual dashboard section?

  • What's  REUSE_ALV_FIELDCATALOG_MERGE ?!

    Hi, is there a whole reference about such "REUSE_ALV......" functions ? Moreover, i really need something about ALV. thanks,