Error at pack and body

FUNCTION GET_WebUserPassword  Return Varchar2 is
        BEGIN   
        l_query_websdb := 'SELECT WEBUSERPASS  FROM '|| l_websdb||'.WEBUSERDETL WHERE TRIM(WEBUSERNAME) = ''BPPMASTER''';
        EXECUTE IMMEDIATE l_query_websdb INTO l_webuserpass;
        RETURN l_webuserpass;
      EXCEPTION
            WHEN NO_DATA_FOUND THEN
               -- l_webuserpass := NULL;
                RETURN l_webuserpass;
            WHEN OTHERS THEN
         --       P_STATUS := XUL.FAILURE;
             --   P_OUTPUTXML := P_OUTPUTXML || '<edit><fieldname><message><![CDATA[WEBSDBSchema.webuserdetl table is not accessible.]]></message>
                             --                  <messagetype>' || P_STATUS || '</messagetype>
                                --               <fullmessage><![CDATA[' || P_STATUS || ' ~ WEBSDBSchema.webuserdetl table is not accessible.]]></fullmessage></fieldname></edit>';
                RETURN l_webuserpass;
              END GET_WebUserPassword;i got this error when i am compiling
Error(61,11): PLS-00323: subprogram or cursor 'GET_WEBUSERPASSWORD' is declared in a package specification and must be defined in the package bodyand i have menction in package body and package specification aslo
???

What you have shown will not compile.
SQL> create or replace package p1 as
  2  FUNCTION GET_WebUserPassword  return varchar2;
  3  end;
  4  /
Package created.
SQL> create or replace package body p1 as
  2
  3  FUNCTION GET_WebUserPassword  Return Varchar2 is
  4          BEGIN
  5          l_query_websdb := 'SELECT WEBUSERPASS  FROM '|| l_websdb||'.WEBUSERDETL WHERE TRIM(WEBUSERNAME) = ''BPPMAST
ER''';
  6          EXECUTE IMMEDIATE l_query_websdb INTO l_webuserpass;
  7          RETURN l_webuserpass;
  8        EXCEPTION
  9              WHEN NO_DATA_FOUND THEN
10                 -- l_webuserpass := NULL;
11                  RETURN l_webuserpass;
12              WHEN OTHERS THEN
13           --       P_STATUS := XUL.FAILURE;
14               --   P_OUTPUTXML := P_OUTPUTXML || '<edit><fieldname><message><![CDATA[WEBSDBSchema.webuserdetl table
is not accessible.]]></message>
15                               --                  <messagetype>' || P_STATUS || '</messagetype>
16                                  --               <fullmessage><![CDATA[' || P_STATUS || ' ~ WEBSDBSchema.webuserdet
l table is not accessible.]]></fullmessage></fieldname></edit>';
17                  RETURN l_webuserpass;
18  end;
19  /
Warning: Package Body created with compilation errors.
SQL> show err
Errors for PACKAGE BODY P1:
LINE/COL ERROR
18/4     PLS-00103: Encountered the symbol "end-of-file" when expecting
         one of the following:
         begin end function pragma procedure
SQL>

Similar Messages

  • I purchased a monthly pack and havent been able to use it. I have been getting charged for 3 months now and I still get an error message saying "unable to load all your plans". How do I re-install or dowload and get my last 3 payments reimbursed?

    I purchased a monthly pack and havent been able to use it. I have been getting charged for 3 months now and I still get an error message saying "unable to load all your plans". How do I re-install or dowload and get my last 3 payments reimbursed?

    Link for Download & Install & Setup & Activation problems may help
    -Online Chat http://www.adobe.com/support/download-install/supportinfo/
    or
    Adobe contact information - http://helpx.adobe.com/contact.html

  • TS3694 I applied the update today to an Iphone 5 and it totally trashed the phone. Total restore WOULD NOT bring it back- it is a nice paper weight- Error 6. Any body got a clue?  Have tried restore several times- yes- disconnected all usb devices  THX

    I applied the update today to an Iphone 5 and it totally trashed the phone. Total restore WOULD NOT bring it back- it is a nice paper weight- Error 6. Any body got a clue?  Have tried restore several times- yes- disconnected all usb devices  THX

    Did you try all 7 trouble shooting steps outlined Apple Support Page you linked from?

  • I paid for PDF Pack and keep getting an error 404 - file not found when I try to do anything

    Just paid for PDF Pack and cannot get it to start working.  Have a file open, went to account, create, got to website, and it wont let me do anything,

    Hi EJ,
    I wanted to check in to make sure you have everything working at this point?
    Let me know if you have further questions.
    Regards, Stacy

  • Error when Compiling package header and body - how change pkb file associat

    Hi everyone,
    it has already been noticed elsewhere (in the thread "Compiling package header and body" of Jan 12, 2010) that the compilation of package scripts sometimes fails (apparently because of a sqldeveloper bug) when the script contains the terminating slash /.
    Is this bug still open?
    Next question: In the above mentioned thread it is recommended as workaround to change the corresponding file type association from pl/sql to sql. I would like to do that; I know the place in the preferences dialog, but most of the associations there seem to be hard coded and cannot be changed.
    I would appreciate any ideas!
    Thanks in advance,
    user8632123.

    For the workaround: you'd have to change the file's extension, not the association (to e.g. .sql).
    Have fun,
    K.

  • Payment advice notes by email (change in sender id) and body

    Hi experts ,
    I am trying to change the sender name and body of the mail that is send by mail.does this code work i called SO_NEW_DOCUMENT_ATT_SEND_API1 in Z_PAN_EMAIL_00002040.
    look in the code and also tell me me does this work out. can some one tell me what is the 'SAPoffice'  in this code. (ls_document_data-obj_name  = 'SAPoffice'.) in fill document data part.
    FUNCTION Z_PAN_EMAIL_00002040.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(I_REGUH) LIKE  REGUH STRUCTURE  REGUH
    *"  CHANGING
    *"     REFERENCE(C_FINAA) LIKE  FINAA STRUCTURE  FINAA
    data: zadrnr     like adr6-addrnumber,
          zsmtp_addr like adr6-smtp_addr,
          zremark    like adrt-remark,
          begin of zcon occurs 0,
              zadrnr     like adr6-addrnumber,
              zconnumber like adr6-consnumber,
              zsmtp_addr like adr6-smtp_addr,
          end of zcon.
          refresh zcon.
          select single adrnr into zadrnr from lfa1 where
                              lifnr = i_reguh-lifnr.
          if sy-subrc = 0.
             select addrnumber consnumber smtp_addr into table zcon
             from adr6 where addrnumber = zadrnr.
          endif.
             loop at zcon.
                  clear zremark.
                  select single REMARK INTO ZREMARK FROM ADRT
                                   where addrnumber = zcon-zadrnr
                                   and consnumber = zcon-zconnumber.
                  TRANSLATE zREMARK TO UPPER CASE.
                  if sy-subrc = 0 and zremark = 'REMIT'.
                     zsmtp_addr = zcon-zsmtp_addr.
                     exit.
                  endif.
             endloop.
             IF zsmtp_addr <> ' '.
       search zsmtp_addr for 'britishcouncil' .
       if sy-subrc <> 0.
      code modified to check if sy-subrc = 0.
               C_FINAA-NACHA = 'I'.
    CODE MODIFIED AS PER SAP NOTE  1033893 .
          C_FINAA-NAMEP = 'Testname'.
        internet address of partner company clerk has been changed by pradeep akula as per requirements.
          C_FINAA-INTAD = zsmtp_addr.
          C_FINAA-FORNR = 'Z_F110_IN_AVIS2'.
      this zzmail_sender_addrr and zzmail_body_text  did not work in testing.
         C_FINAA-ZZMAIL_BODY_TEXT = 'This is a test body text'.
         C_FINAA-ZZMAIL_BODY_TEXT = 'Payment Advice Notes attached, please do not discard this message .All vendors should please add their company name'.
       endif.
    ENDIF.
    code changes done by pradeep akula for Body of mail .
    CLASS cl_abap_char_utilities DEFINITION LOAD.
    TYPES: t_solisti1 TYPE TABLE OF solisti1,
          t_sopcklsti1 TYPE TABLE OF sopcklsti1,
          t_somlreci1 TYPE TABLE OF somlreci1.
    DATA: lt_content       TYPE t_solisti1,
          lt_packing_list  TYPE t_sopcklsti1,
          lt_header        TYPE t_solisti1,
          ls_document_data TYPE sodocchgi1,
          l_subject        TYPE solisti1-line,
          l_content_lines  TYPE i,
          lt_receiver      TYPE t_somlreci1,
          l_address        TYPE adr6-smtp_addr,
          l_new_object_id  TYPE sofolenti1-object_id,
          l_sent_to_all    TYPE sy-binpt,
          l_msg_text       TYPE string,
          l_rc             TYPE sy-subrc,
          l_user           TYPE sy-uname.
    DATA:  l_crlf(2)             TYPE  c.
    DATA:  BEGIN OF crlf,
             x(1) TYPE x VALUE '0D',
             y(1) TYPE x VALUE '0A',
           END OF crlf.
      l_crlf = cl_abap_char_utilities=>cr_lf.
    receiver address
      DATA: ls_receiver TYPE somlreci1.
      ls_receiver-receiver = zsmtp_addr.
    receiver address type (internet address)
      ls_receiver-rec_type = 'U'.
    communication type (send via internet)
      ls_receiver-com_type = 'INT'.
      APPEND ls_receiver TO lt_receiver.
    SAP name: used for the shortcut to the inbox (optional)
    l_user = p_user.
    l_user = ' '.
    mail subject
    l_subject = p_subj.
    DATA: ls_content TYPE solisti1,
          ls_header  TYPE solisti1.
    fill the document data.
      READ TABLE lt_content INDEX l_content_lines INTO ls_content.
      ls_document_data-doc_size =
        ( l_content_lines - 1 ) * 255 + STRLEN( ls_content ).
      ls_document_data-obj_name  = 'SAPoffice'.
      ls_document_data-obj_descr =  'Test mail form payment advice its working'.
      ls_document_data-obj_prio = 5.
      ls_document_data-priority = 5.
    fill data of mail
      DATA: ls_packing_list TYPE sopcklsti1.
    update the packing list.
      ls_packing_list-transf_bin = ' '.
      ls_packing_list-body_start = 1.
      ls_packing_list-body_num = l_content_lines.
      ls_packing_list-doc_type = 'RAW'.
      APPEND ls_packing_list TO lt_packing_list.
      ls_header-line = 'Test header - Vish'.
      append ls_header to lt_header.
      ls_content-line =   'Test mail form payment advice what you want to print here'.
      append ls_content to lt_content.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = ls_document_data
          commit_work                = 'X'
        IMPORTING
         sent_to_all                = l_sent_to_all
          new_object_id              = l_new_object_id
        TABLES
          packing_list               = lt_packing_list
          object_header              = lt_header
          contents_txt               = lt_content
          receivers                  = lt_receiver
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc <> 0.
      keep error message
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                INTO l_msg_text.
      ENDIF.
    endfunction.

    Hi Pradeep,
    you can change the sender, when you change the system-field SY-UNAME before calling FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    REPORT Z_TEST_SEND_MAIL.
    h_uname must be a SAP-UserId.
    sy-uname = h_uname.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
         PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = OBJPACK
          OBJECT_HEADER              = OBJHEAD
          CONTENTS_BIN               = OBJBIN
          CONTENTS_TXT               = OBJTXT
          RECEIVERS                  = RECLIST
        EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          OPERATION_NO_AUTHORIZATION = 4
          OTHERS                     = 99.
    I tried it and it was successfull.

  • How to open and compile a package specification and body in SQL Developer

    I'm currently evaluating a possible migration to SQL Developer.
    Our PL/SQL code base is stored in scripts files named as follows: <schema>.<package_name>_<package|package_body>.sql and managed in SVN.
    If now trying open a sql script containing the package specification or body and trying to compile it, I get no or strange error messages as if SQLDeveloper would not recognize the source as a PL/SQL code.
    If I open an already compiled package from the database it seems to work as expected.
    On the other hand I cannot find any option to write a package specification or body to a script except for the "Save package spec and body" option that only generates a single (!) script containing package specification and body in one single file and without any configuration options on how to name the generated file.
    Any help is appreciated!

    What strange error messages ? Make sure to configure your extensions as PL/SQL file type under Preferences - File Types.
    To save, just Save As under the File menu.
    Hope that helps,
    K.

  • Windows Update Error Code 80070663 and 64C

    I am running x64 Vista on an HP Pavillion dv9000 laptop.
    I was cleaning up my desktop when I saw a Word doc I didn't recognize.  I tried to open it and got a Windows Installer window saying "Preparing to Install".  I have an activated, legal version of Microsoft Office 2007.  This is the first time
    I've seen that window pop up.  I let it try to install whatever it's trying to install and it comes up with an error: "This update package could not be opened.  Verify that the update package exists and that you can access it, or contact the application
    vendor to verify that this is a valid Windows Installer update package."  I am the administrator on this computer.  I have full access to all files.
    This prompts me to start Windows Update to see if that will fix it.  That's where the error codes come in.  The windows updates: "Microsoft .NET Framework 3.5 Family Update (KB959209) x64" and "Security Update for Microsoft Visual C++ 2008 Service
    Pack 1 Redistributable Package (KB2538243) yielded the error codes 80070663 and 64C.
    I noticed when I press Start, the power button occasionally says "Installs Updates then Shuts Down".  I didn't click it because I had work open I needed to work on later.  Then when I left the computer and came back, the power button didn't have
    the shield on it that said "Installs Updates then Shuts Down".  I shut down my computer anyway and it didn't install any updates, and this is where I'm at.  I've retried installing the updates via Windows Update and it still shows the original error
    codes.
    I've researched this error and came across Microsoft Fix It, downloaded as: "MicrosoftFixit.wu.LB.137269729445221149.2.1".  I've run it and it did not solve the problem.
    Please help,
    Jake

    Jake, did you ever find a solution to your problem? I'm afraid I can't help if you didn't, but I'm experiencing the same problem.
    I also run Vista and had no problems until recently when I had an installation failure on 12th April 2014 for the same two updates:
    Microsoft .NET Framework 3.5 Family Update (KB959209) x86 - (Installation status: Failed. Error details: Code 80070663)
    Security Update for Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package (KB2538243) - (Installation status: Failed. Error details: Code 64C)
    I don't know whether it's these updates that caused the problem or an earlier update that has stopped these updates been installed.  The PC is generally working but Word & Excel don't load any more. I get a 'Preparing to install' popup follwed by
    the message: 'This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.'
    If you did find a solution or any one else knows of one then I'd be very grateful.
    Dave.

  • Error in retrieving and parsing XML File

    Hi Folks
    I am Working on People centric user interface, While i am custimizing a application in Business application Builder i am getting this error
    " Error in retrieving and parsing XML File "
    can any body look on this and give me the solution
    it will be rewarded
    Regards
    M.S.Kumar

    Hello,
    As mentionned by SAP_TECH, avoid to use the BAB.
    Go to CRMC_BLUEPRINT_C and use the different option in the menu to customize the field group, toolbar group, events, ...
    Use the PCUI cookbook to find your way.
    Regards,
    Fred

  • CDS-18010 Error:A Index and a index with the same name

    Hi
    I am facing strange error is some one expert there to help me to get rid of this error.
    CDS-18010 Error:A Index and a index with the same name 'LA_SP_FK_1' have been asked to be created.
    I am generating tables from Data model diagram & getting this error.
    Thanks,
    Vijay

    Your Right!!
    Designer does not like 2 of the same name.
    there are several bugs on the same name issue and CDS-18010
    Bug.3973155/3443005 (92) CDS-18010 IN CAPTURING A TYPE WITH CONSTRUCTOR FUNTIONS IN ITS BODY:
    Bug.2586582 (93) CDS-18010 A DOMAIN AND A DOMAIN WITH THE SAME NAME 'D1' BEEN ASKED TO CREATE:
    Bug.2561625 (15) CDS-18010 GENERATION OF TWO SYNONYMS WITH SAME NAME BUT DIFFERENT SCOPE:
    Bug.2072505 (93) CDS-18010 CAPTURING 2 TRIGGERS WITH SAME NAME ON ONE TABLE SHOULD BE A WARNING:
    Bug.1689800 (90) CDS-18010 PLSQL WITH THE SAME PROCEDURE NAME ALREADY EXISTS:
    Bug.1073311/1029997 (96) CDS-18010 ERROR ATTEMPTING TO CREATE 2 PROCEDURES WITH SAME NAME:
    Just to name a few.
    I would suggest you change the name.
    Michael

  • Getting error in each and every scenario

    Hi,
    I am getting Error as "HTTP response contains status code 503 with the description service unavailable" at SXMB_MONI in each every scenario like
    FIle to File,
    FIle to IDOC and vice versa,
    IDOC to JMS and vice versa,
    File to JDBC,
    HTTP to IDOC,
    JMS to JDBC,
    RFC to SOAP etc.
    Earlier the above scenarios all are working fine.i.e without any Error.
    Can any body help me to resolve this problem.
    Regards
    Sridhar Raju Mahali

    hi sridhar..
    got design.. -> tools -> transfer from SLD -> import s/w component version...
    and import the below 2 components 
    SAP J2EE ENGINE 6.40     sap.com     SAP-JEE     6.40     01200615320200006685
         SAP BASIS 6.40     sap.com     SAP_BASIS     640     01200615320200005507
    if imported, re-import....
    hit the fulll cache refresh then ..and restart ur IR ID...
    ( confirm with ur basis guys, how to go abt)
    regards..
    vishal

  • Bug SQL Developer 3.0.04 Save Package Spec and Body to ips file bug

    Hi.
    I have problem with export package body end header. Exported ips file have some rows switched compared to original source code.
    SQL Developer version: 3.0.04. Build MAIN-04.34
    Error simulation:
    - Click on package header with right mouse button in SQL Developers Connections bar
    - In context menu choose 'Save Package Spec and Body...'
    - Save ips file... (Small bug: Offered file name is wrong (= last saved package/file, not actual name of package) :-( )
    - This file(source code) compare with original source code in Developer and u will see switched rows every +-90. row in source code.
    Can u fix this in next version of SQL Developer?
    Thanks...
    Edited by: 880809 on 22.8.2011 6:57

    Bug 12904494 has been created.
    Michael

  • Installed CS6 all but Illustrator installed correctly, I received error DF024, DW063, and DW050, how can I install Illustrator and fix these errors?

    installed CS6 all but Illustrator installed correctly, I received error DF024, DW063, and DW050, how can I install Illustrator and fix these errors?
    this is the log error file I get:
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example, ERROR: DF024, DW063 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 0 warning(s)
    ----------- Payload: {AAF0D225-F129-40F2-916E-12E28DBD19ED} Adobe Illustrator CS6 Core 16.0.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "/Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/AdobeCrashReporter" (Seq 1649)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 1649)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050: - Adobe Illustrator CS6 Core_AdobeIllustrator16en_USLanguagePack: Install failed
    ERROR: DW050: - Adobe Illustrator CS6 Core: Failed due to Language Pack installation failure

    hold down shift-cmd-alt while starting ai.  if done correctly, you'll see a preferences reset prompt.
    if that fails, uninstall, clean and reinstall per Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Netbeans 6.0 Visual Web Pack and facelets

    Is it current possible to use Netbeans 6.0 Visual Web Pack and facelets and/or Seams?
    If so please point me to some useful resource.

    >
    ...Below is from the Launch tab:>What exactly is a 'launch tab'? Are you talking about some NetBeans window?
    The reason I ask is that the 'JNLP file' shown, is complete rubbish. It is a bunch of symbols pretending to be a JNLP file. The fundamental problem is that it is invalid (and hence it is not the 'JNLP format' it claims to be).
    How any particular Java implementation deals with an invalid JNLP file is quite unpredicatable.*
    Please people, do not just 'presume' that you (or your IDE) can write a valid JNLP file. Instead - validate it against a DTD or XSD.
    After all.. Garbage in, Garbage out!
    * And to the poster who mentioned that adding the first Jar line twice solved the problem. That is a dangerous and fragile kludge. If it works in some specific microversion of Java, it might (probably will) break in the next.
    Edit 1 - Highlit the most major error in that file using 'code' tags. Hopefully that will make the basic problem more obvious..
    <j2se version="1.5+" java-vm-args="-Djava.endorsed.dirs="C:\Program Files (x86)\NetBeans 6.0.1\java1\modules\ext\jaxws21\api" "/>Edited by: AndrewThompson64 on May 21, 2008 9:20 AM
    Edit 2 - Added possible alternatives..
    <j2se version="1.5+" java-vm-args="-Djava.endorsed.dirs='C:\Program Files (x86)\NetBeans 6.0.1\java1\modules\ext\jaxws21\api' "/>
    <j2se version="1.5+" java-vm-args='-Djava.endorsed.dirs="C:\Program Files (x86)\NetBeans 6.0.1\java1\modules\ext\jaxws21\api" '/>The hard coded path, as well as the use of unescaped backslashes (e.g. '\' as opposed to '\\') also looks suspiciously wrong, but since I only deploy off the internet, I am not entirely sure.
    Edited by: AndrewThompson64 on May 21, 2008 9:26 AM

  • Error : WWWLSNR32.exe and F50WEB32.exe

    I have installed Web Server on Windows NT 4 ,Service Pack 4 with
    Oracle 8 RDBMS in a same machine. All the OAS Services are up
    manually.At first I can access the server through Internet
    Browser but suddenly I get this error when I try to access the
    server,
    An Application error has occured
    and an application error log is being generated
    WWWLSNR32.exe
    Exception (0xc0000025),Address:.....
    and then my Oracle Listener 'www' is DOWN by itself.
    and I also get this error:
    An Application error has occured
    and an application error log is being generated
    F50WEB32.exe
    Exception (0xc0000025),Address:.....
    and now I still can't implement these Oracle solution to my
    customer which they have paid.
    Please Oracle Experts,give me solution.
    Thanks for any help and I really appreciate.
    null

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates
    Under normal circumstances, an uninstall/reinstall doesn't touch your content. (That being said, it's still always a good idea to maintain a current backup at all times in case of disasters of any sort.)

Maybe you are looking for

  • RESOLUTION: GNB MAX and Radeon 9700 Crashes

    I had various lock-ups, crashes and "Windows detected and recovered from a device failure" error messages with my GNB MAX motherboard and Radeon 9700 and they are now fixed. I was able to receive a beta version of an upcoming set of drivers from ATI

  • Is there a way to see what camcorders are compatible with iMovie?

    Just curious, thanks. I have a DCR-TRV460 camcorder, from Sony. Is there a link that says which ones will and won't work with the program? The thing is, I've connected the camcorder to my new MacBook and it won't recognize it. If someone can tell me

  • BAPI or RFC for

    Hi All, Is there a standard BAPI or RFC available to get the Posting Change Number (UBNUM) Transfer Requirement Number (TBNUM) for the material document number? BAPI_GOODSMVT_GETDETAIL is not providing above details so looking for alternate standard

  • IDOC - PI - PI thru HTTP

    Hi i having  scenario saying that  ...  IDOC  ---  PI ( MY PI server ) --- PI  ( 3rd Party  ) thru HTTP Connections .. i have  created a IDOC in R/3 , i pushed to my PI server Now , what i need is i want to Push my XML document which is in MY PI serv

  • Error creating forms context

    Does anyone know why this C code, when executed from UNIX command line works, but won't work as a host command from a form. I am running 9iAS release 2, on AIX. I have tried using a shell script in which I set all necessary environment variables befo