Error calling report FRM-41213 unable to connect to Report Server

Hi,
I have installed Oracle Database 10g R2 and Oracle Developer 10gR2.
I installed it in both Windows 2000 SP4 and Windows XP SP2.
I would like to call a Report using a button inside Oracle Form.
I create my own Report Server, using : rwserver server=repsrv
A Java-based window appear OracleAS Reports Sevice, and showed that repsrv is ready.
In Form (inside a button -> WHEN-BUTTON-PRESSED) :
1. Using RUN_REPORT_OBJECT()
   rep_id := find_report_object('REPORT10');
     if not id_null(rep_id) then
       v_rep := run_report_object(rep_id);
     else
          message('Null');
   end if;
   a. If I did not specify the name of the Report Server in Reports node of Form's property object
(I leave it blank)
The following error appear :
FRM-41211: Integration error, SSL failure running another product
b. If I specify the name of the Report Server : repsrv
The following error appear :
FRM-41213: Unable to connect to Reports Server repsrv
2. Using WEB.SHOW_DOCUMENT()
a. If did not I specify the server name in the parameter
WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||,'_blank');Another web browser appear and the following error appear :
REP-51002: Bind to Reports Server rep_<computer_name> failed
b. If I specify the server name in the parameter --> server='repsrv'
WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||'server=repsrv','_blank');Another web browser appear and the following error appear :
REP-51002: Bind to Reports Server repsrv failed
In Report :
If I try to navigate manually to :
1. http://localhost:8889/reports/rwservlet using web browser.
It showed OracleAS Report Services - Servlet Command Help page.
2. http://localhost:8889/reports/rwservlet?userid=scott/tiger@orcl&report=D:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
The following error occured
REP-51002: Bind to Reports Server rep_<computer_name> failed
3. Finally,
http://localhost:8889/reports/rwservlet?server=REPSRV&userid=scott/tiger@orcl&report=C:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
The following error occured
REP-51002: Bind to Reports Server repsrv failed
4. Any attempt to different command (i.e showenv, showjobs, etc) seems failed
If I did not specify the server then REP-51002: Bind to Reports Server rep_<computer_name> failed
If I specify the server - 'repsrv' then REP-51002: Bind to Reports Server repsrv failed
5. I have tried to use rwrun in command line.
rwrun report="D:\My Documents\form\module1.jsp" userid=scott/tiger@orcl destype=file desformat=pdf desname="D:\My Documents\form\module2.pdf"
The PDF file created and it looks exactly as the web layout as in Oracle Report Builder (Run Web Layout CTRL-R)
Question :
1. What supposed to be done?
The Report server is ready, but the web browser seems unable to connect to Report Server.
2. Can we used or call or executed an executable command line from Form (using PL/SQL inside button)?
Any help would be grateful.
Many thanks,
Buntoro

Hi,
Problem solved.
I got the solution from another post.
Re: REP-51002: Bind to Reports Server rep failed
Here are the step I did.
Note : Please make backup for the following file : rwnetwork.conf
- In file rwnetwork.conf, remove or commented the following
<multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/>
- And then uncommented
<namingService name="Cos" host="%NAMING_HOST%" port="%NAMING_PORT%"/>
- replace the
%NAMING_HOST% with your computer name or specify an IP address
%NAMING_PORT% with 14021
It should look like this :
<namingService name="Cos" host="blahblah" port="14021"/>
- I did not change the : name="Cos", since I do not understand what does it for
- Save you changes.
- Start the OC4J.
- Find the location of : namingservice.bat (on Windows platform)
- execute in the command line : namingservice.bat 14021
- finally start the report in the web browser
Note:
To shutdown the namingservice, use : namingservice.bat 14021 shutdown
Regards.
Buntoro

Similar Messages

  • Again FRM-41213: Unable to connect to Report Server

    Hi all
    I've been fighting with this problem a week, but I can not understand why my form, which works fine in the Oracle DS Report Server, can not run the report in the Oracle AS.
    I'm using the Oracle AS 10g. All forms and reports are done in the DS 10g too. All testing stuff I've made at once:
    1. rwclient works good
    2. rwservlet works too
    3. SSL is switched off
    The report server, which I use is in-proc sservice (installed during the installation of AS). I did not make any other service of reports - I think it must work too.
    I've made such code:
    PROCEDURE RUN_REPORT(pReportParams Report_Params_Type)
    AS
    lParamList ParamList;
    lReport REPORT_OBJECT;
    lReturn VARCHAR2(100);
    lRepServer VARCHAR2(100);
    lHost VARCHAR2(20);
    lPort VARCHAR2(6);
    lURLStr VARCHAR2(100);
    lStatus VARCHAR2(100);
    ljobID VARCHAR2(100);
    BEGIN
         lReport := FIND_REPORT_OBJECT(pReportParams.ReportName);
         TOOL_ENV.GETVAR('REPORTSERVERNAME', lRepServer);
         IF TRIM(lRepServer) IS NULL THEN
              SHOW_ERROR_MESSAGE('Report server name is not defined in the .env file');
         ELSE
              lRepServer := TRIM(lRepServer);
         END IF;     
         TOOL_ENV.GETVAR('HOSTNAME', lHost);
         IF TRIM(lHost) IS NULL THEN
              SHOW_ERROR_MESSAGE('Report server host is not defined in the .env file');
         END IF;     
    TOOL_ENV.GETVAR('REPORTSERVERPORT', lPort);
         /*IF TRIM(lPort) IS NULL THEN
              SHOW_ERROR_MESSAGE('Report server port is not defined in the .env file');
         END IF;     */
         IF ID_NULL(lReport) THEN
              Show_Error_Message('Report '||pReportParams.ReportName||' is not found');
         END IF;     
         lParamList := GET_PARAMETER_LIST('REPORT_PARAMS');
         IF NOT ID_NULL(lParamList) THEN
              DESTROY_PARAMETER_LIST(lParamList);
         END IF;     
         lParamList := CREATE_PARAMETER_LIST('REPORT_PARAMS');
    SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_COMM_MODE, ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_DESTYPE, CACHE); --cache/printer
    SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_DESFORMAT, pReportParams.Format);
    SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_SERVER, lRepServer);
    lReturn := RUN_REPORT_OBJECT(lReport, lParamList);
    ljobID := SUBSTR(lReturn, LENGTH(lRepServer) + 2, LENGTH(lReturn));
    IF ljobID IS NOT NULL THEN
    lStatus := REPORT_OBJECT_STATUS(lReturn);
    WHILE lStatus in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    lStatus := REPORT_OBJECT_STATUS(lReturn);
    END LOOP;
    IF lStatus = 'FINISHED' THEN
         IF TRIM(lPort) IS NOT NULL THEN
    lURLStr := 'http://'||lHost||':'||lPort||'/reports/rwservlet/getjobid'||ljobID||'?server='||lRepServer;
         ELSE
              lURLStr := 'http://'||lHost||'/reports/rwservlet/getjobid'||ljobID||'?server='||lRepServer;
         END IF;     
         SHOW_INFO_MESSAGE(lURLStr);
    WEB.SHOW_DOCUMENT(lURLStr, '_blank');
    ELSE
    Message('Report can not be run with status '|| lStatus);
    END IF;
    END IF;
    DESTROY_PARAMETER_LIST(lParamList);
    END;     
    END;
    The parameters: REPORTSERVERNAME, HOSTNAME, REPORTSERVERPORT are decribed in the env file. the name of the server is defined correctly.
    I noticed that the procedure
    lReturn := RUN_REPORT_OBJECT(lReport, lParamList);
    returns &lt;server_name_0&gt;. In the result, the job=0 - I think the forms service can not access to the report service, but I can not understand why.
    Could anyone help me?
    Thanks in advance

    1) pls make sure inproc server is up
    inproc server is hosted in oc4_bi_forms j2ee container. so oc4j_bi_forms should also be up
    give
    http://host:port/reports/rwservlet/getserverinfo?server=server_name
    and you can see status of server. (or you can in oracle enterprise manager)
    You can also see status of submitted jobs using
    http://host:port/reports/rwservlet/showjobs?server=server_name
    2) any reports servlet command will automatically start inproc server.
    but submitting a request thru run_report_object will not make it start automatically
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • FRM-41213 Unable to connect to the report server

    I am converting an app from 6i to 9i. There are many reports, and I am trying, rather unsuccessfully, to get them to work. I have run the report server setup, and have the service started on my laptop. I am trying to use the following code to run a report attached as an object to my form, but I am getting the above 'cannot connect to report server' error. Can anyone point me in the right direction to resolve this problem??
    declare
    plistid          paramlist;
    pl_name     varchar2(20) := 'report_params';
    rep_id REPORT_OBJECT;
    v_rep varchar2(100);
    begin
    plistid := create_parameter_list(pl_name);
         add_parameter(plistid, 'p_rpt_catg', text_parameter, v_rpt_hdr1);
         add_parameter(plistid, 'p_rpt_name', text_parameter, 'REPORT80');
         add_parameter(plistid, 'p_db_ver', text_parameter, 'V33');
    rep_id := find_report_object('REPORT80');
    set_report_object_property(rep_id, REPORT_EXECUTION_MODE, RUNTIME);
    set_report_object_property(rep_id, REPORT_DESTYPE, SCREEN);
    set_report_object_property(rep_id, REPORT_COMM_MODE, SYNCHRONOUS);
    set_report_object_property(rep_id, REPORT_SERVER, 'dvlpserver');
    v_rep := run_report_object(rep_id,plistid);
    Thanks -- Jean.

    1) destype=screen is not allowed
    2) Please refer this forms-reports integration document which explains in detail about the integration
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    3) In particular refer the pages 41-43 which explains some common errors and troubleshooting
    4) Also look at info provided on things to take care while migrating from 6i -> 9i
    Thanks
    The Oracle Reports Team

  • Cannot open Report Manager URL -- "Unable to Connect to Remote Server"

    Hi, 
    I have recently installed SSRS 2012 on my remote server (Native Mode). I had the default configurations set except for the port has been changed to "8081". I created an Inbound Rule in Firewall to make sure it's enabled. 
    I'm unable to connect to the report manager locally at all, I got a Domain\username authentication and the credentials are never accepted locally.  I tried accessing my report server using the remote server host name and I was successfully logged in,
    however,  I got a message "Unable to Connect to the remote server". 
    I checked the log folder and there was no files created for my unsuccessful login. 
    I've been stumbling with this issue for almost a week, Any ideas or suggestions ?

    Hi SB User,
    Per my understanding that after you change the IP to "8081" then you can't connect to the report server both locally and remotely, right?
    Is that mean before you have changed the IP, everything works fine and did you got some pop up window ask for credential when you connect to the report server?
    You issue can be caused by many factors, please try to check details information below and do some configurations:
    Go to Reporting Services Configuration Manager and change the account to "Network Service" to see if it will works fine.
    Change the account to domain account and re-enter the username and password to see if it works fine. 
    Remove the SSL if configured.
    Go to C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.config 
    In rsreportserver.config Change the SecureConnectionLevel value to "0":
    <Add Key="SecureConnectionLevel" Value="0"/>
    Stop and restart the report services instance to see if you can connect to report server.
    please also Using IP instead of computer name as the <servername> in the URL to have a test.
    If your issue still exists, please try to change the IP to have a test.
    If you still have any problem,please fee free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Unable to connect to reports server

    Hi All,
    I have an oracle forms application available on a machine server1 with url http://server1:7777/forms/frmservlet?config=x and the same application also available from another machine server2 with url http://server2:7777/forms/frmservlet?config=x
    The reports server name is stored in a database table as rep_server2.
    When i attempt to call a report from a form running on the server server2, the report call is successful. However when i attempt to call a report from the same form running on the server server1, i get an error FRM-41213: Unable to connect to the report server rep_server2
    How do i get the call to rep_server2 to work from the url http://server1:7777/forms/frmservlet?config=x
    Thanks

    1 Are the server 1 & 2 in the same network?
    2 Are the reports versions in 1 & 2 are same ?
    3 Could you use the below fmx and check if you are able to find the reports server from the server where
    it doesnt work
    [Finding List of reports Server from Forms|http://alexyscorp.com/products.htm]
    (Download the Reports Server Form (Windows FMX) )
    Rajesh
    Edited by: RajeshAlex on Sep 5, 2008 10:58 AM
    Edited by: RajeshAlex on Sep 5, 2008 10:59 AM

  • Sharepoint Integrated SQL Reporting - Unable to connect to the server that is specified......

    This is driving me crazy.  I have Reporting services implemented on several sites in Sharepoint.  For some reason just one site refuses to work.  I see all the features are there.  I can create data sources. 
    When I try to create a report I get :
    "Unable to connect to the server that is specified in the URL,
    http://help.site.  Make sure that the server is running, the URL is correct, and you have permission to use the server"
    I'm using my domain admin account, I know know this works on every other site.  I know I haven't forgotten the general setup of the service. 
    The only difference is this site allows "anonymous" connections.  Has anyone heard of an issue about using anon and reporting services?  Either way I authenticate before I login but that doesn't have an effect.
    David Jenkins

    Thank you forums!!!!
    I found an existing thread. 
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/d815b9fb-3431-490d-bd51-e7e21fcb788e
    1) Opened up IIS
    2) Expanded my intranet folder
    3) Expanded _vti_bin
    4) Highlighted "ReportServer"
    5) Double Clicked on Authentication
    6) Disabled "Anonymous Access" to the reporting folder itself
    7) Opened report builder 3.0 and typed in http://intranet.company.com" BOOM instant connection :D
    David Jenkins

  • I can't receive my incoming mail. ESP is yahoo.  Error msg says unable to connect with POP server.  Any solution?

    I can't receive my incoming mail in Mac Mail. ESP is yahoo.  Error msg says unable to connect with POP server.  Any solution?  I am able to get my incoming messages via yahoo website but not through the Mail app.

    Try this, if it is not the correct department, ask them for the number or to be transfered..
    Call 1-800-318-0612 for Login Help
    Also on most autmated systems, if you hit 00000, or ##### you can sometimes get thru to a person.
    Is Yahoo your Internet provider? Do you have  a local provider? ei:AT&T, SBC,  cable co, check who you make your check or epatment to...etc, If so I would start there, but if no joy go to the "Mothership"
    I may be wrong about this, (it's been a long time now) I may have deleted my mail account from Mail (after writing down all the info from all General/accounts, and the rest of the tabs, and then added a new account using my existing email address, and it may have "walked me thru the rest of the proceedure".
    But like I said it was a long time ago 3-4 years, but that may have been the path I ended up taking, make sure to write all the info down in case you need to re-enter it all manually. Then try calling them.
    All the best

  • Unable to connect XL Reporter in 2007 B

    Hi Experts,
    I'm facing a problem in XL Reporter as whenever I click on Tools-XL Reporter, I get an error message as
    Unable to connect XL Reporter
    Error! User Authentication Failed
    Cause: Invalid use of Null
    I've upgraded from 2005 B to 2007 B and database is SQL Server 2005.
    Help is needed urgently.
    Thanks & Regards,
    Kaps.

    Hi Kaps,
    Based on the error message, it is User Authentication problem.  Have you checked if the user has proper User Authentication?
    Thanks,
    Gordon

  • [Forum FAQ] "Unable to connect to the server by using Windows PowerShell Remoting" error while installing RDS roles on Server 2012 R2

    When you try to install RDS role on server 2012 R2 using standard deployment, this issue may occur (Figure 1).
    “Unable to connect to the server by using Windows PowerShell remoting”.
    Figure 1: Unable to connect to the server by using Windows PowerShell remoting
    First of all, we need to verify the configurations as it suggested:
    1. The server must be available by using Windows PowerShell remotely.
    2. The server must be joined to a domain.
    3. The server must be running at least Windows Server 2012 R2.
    4. The currently logged on user must be a member of the local Administrators group on the server.
    5. Remote Desktop Services connections must be enabled by using Group Policy.
    In addition, we need to check if the “Windows Remote Management “service is running and related firewall exceptions have been created for WinRM listener.
    To enabling PowerShell remoting, we can run this PowerShell command as administrator (Figure 2).
    Enable-PSRemoting -Force
    Figure 2: Enable PowerShell Remoting
    However, if issue persists, we need to check whether it has enough memory to work.
    By default, remote shell allots only 150 MB of memory. If we have IIS or SharePoint App pool, 150 MB of memory is not sufficient to perform the remoting task. Therefore, we need to increase
    the memory via the PowerShell command below:
    Set-Item WSMan:\localhost\Shell\MaxMemoryPerShellMB 1000
    Then, you need to restart the server and the issue should be resolved.
    You can get more information regarding Remote Troubleshooting by below link:
    about_Remote_Troubleshooting
    If you need further assistance, welcome to post your questions in the
    RDS forum.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    i found another possible reason, this solution worked for me:
    http://oyvindnilsen.com/solution-for-powershell-remoting-error-it-cannot-determine-the-content-type-of-the-http-response-from-the-destination-computer/
    I tried to set up powershell remoting on a server and kept getting this error:
    Enter-PSSession : Connecting to remote server failed with the following error message : The WinRM client cann
    ot process the request. It cannot determine the content type of the HTTP response from the destination comput
    er. The content type is absent or invalid. For more information, see the about_Remote_Troubleshooting Help to
    pic.
    After a bit of troubleshooting I discovered that the problem was that the authentication packets was to big (over 16k), this will cause WinRM to reject the request. The reason for authentication packets getting too big can be because the user is member of very
    many security groups or in my case because of the SidHistory attribute.
    The solution was to increase the MaxFieldLength and MaxRequestBytes keys in the registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters
    If the keys does not exists you can create them, be sure to use the DWORD type.
    I sat MaxFieldLength to DEC value 40000 and MaxRequestBytes to DEC value 32768 and rebooted the server. Problem solved.

  • Unable to connect to report server - on Win 8.1 and SQL Server 2014

    unable to connect to report server on  Win 8.1 and SQL Server 2014 version
    Microsoft SQL Server 2014 - 12.0.2000.8 (Intel X86)
        Feb 20 2014 19:20:46
        Copyright (c) Microsoft Corporation
        Express Edition on Windows NT 6.3 <X64> (Build 9600: ) (WOW64)
     Thanks

    Hi,
    I suggest you check out the following article for the steps of installing
    Database Engine Services and SQL Server Reporting Service.
    http://msdn.microsoft.com/en-us/library/ms143711.aspx
    Best Regards,
    Tracy
    Tracy Cai
    TechNet Community Support

  • I am getting error messages when importing CD's. I keep getting a message saying 'unable to connect to CDDB server'. I run itunes on a macbook pro. Any ideas/solutions?

    I am getting error messages when importing CD's. I keep getting a message saying 'unable to connect to CDDB server'. I run itunes on a macbook pro. Any ideas/solutions?

    Don't worry I've sorted it! I just had to turn off Reminders as well in iCloud. Calendar then worked fine, even when I turned Calendar and Reminders back on.

  • Downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?

    downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?
    I click on the launcher and nothing happens, 15 min later it will tell cant connect to the server.
    My computer is a windows 8.1; 64 bit operating system. I am stationed in South Korea, but that should not affect the program. Help please.
    John

    Hi johnd83157268,
    Sorry for the inconvenience that has caused to you.
    Could you please let me know what changes have you made in the registry.
    You might need to uninstall Adobe Reader from Control Panel and try install it again from the following link:
    Adobe Reader Install for all versions
    Please ensure that you are logged in as administrator and anti-virus is disabled as that might interrupt installation.
    Try again and then let me know.
    Regards,
    Anubha

  • Unable to connect to the server.. Error Data : API_NOT_INITIALIZED on CUEAC Server Installation

    Hi all,
    I am trying to install CUEAC Attendant Server on Windows Server 2008 R2, tried several times. First, it got stuck on the Databahse Wizard. After three reinstalls, it still got stuck but somehow built the configure database named CFGATT and then started installing TSP. Finally, the setup has been finished and I went to the WebAdmin page. After I entered the login information, it gave an error : "
    Unable to connect to the server.. Error Data : API_NOT_INITIALIZED"
    I searched through the forum and found this topic :
    https://supportforums.cisco.com/message/1215763
    Here  I found that there's a bug and I tried to do the fix myself as instructed :
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCte44454
    However, it changed nothing, looking forward to your responses.
    Regards,
    Fikri

    Fikri,
    It is not working as this is not a supported environment, the current release is not supported on Windows Server 2008 R2.
    The next release (April 2013) will support that version of Windows Server.

  • While Configuring Siebel Server we are getting "Unable to Connect to Gateway server" error in siebel 8.2.2.14

    Hi
    While Configuring Siebel Server we are getting "Unable to Connect to Gateway server" error in siebel 8.2.2.14
    Our OS is windows 2008 R2 64 bit,Orcale client is 11g 32 bit and Oracle DB is in 11g.We are also able to connect to DB using ODBCSQL.
    Please help.
    Regards
    Shuvendu

    Hello Shuvendu,
    Thanks for using Oracle Communities.
    About your error, there could be many reasons, To start with, please have following knowledge article to know possible reasons.
    C028: "Unable to Connect to the Siebel Gateway Name Server" Logged By Configuration Wizard (Doc ID 1391312.1)
    I hope it helps.
    Best Regards,
    Chetan
    P.S. If any one of the provided responses has been correct or helpful it would be great if you could mark them as appropriate.

  • Unable to Connect to DB Server Error while configuring UDDI 3.0 in BizTalk 2013

    Hi Team ,
    While configuring BizTalk UDDI 3.0 , i am getting an error "unable to connect to DB Server. " In BizTalk 2009 , hotfix was available , but could not find any for BizTalk 2013
    DB Server : SQL Server 2012 64 bit
    Please help me to fix this
    Abhijith

     Got the solution 
    We need to proceed in such a way that DB component alone need to be installed in DB Server. Rest in BizTalk Application Servers
    FYI
    http://tjthompson5150.blogspot.in/2010/04/esb-toolkit-20-multi-server.html
    Abhijith

Maybe you are looking for

  • How to play .wav file from url in iphone.

    We are using callfire API for in our iPhone application(Hybrid application build using sencha and phonegap). The concept of the app is to show the recorded calls in a list and on click of any call in the list it will play the recorded audio file(.wav

  • Select query in case of Multiple line items

    Hi Gurus ,               I've a doubt in general SQL select query. I want to know , if suppose I've an internal table - itab . I've fetched G/L Account numbers 1st, based on the input selections . Next , I want to loop on those G/L accounts. However,

  • GPEngineException Caused by a com.sap.sql.DuplicateKeyException

    Often, we are getting the following error when we do an instance of GP Process from WebDynpro code, however in a second attempt with the same data the GP Process is created successfully: <br> <br> //----- CODE - // <br> IGPUserContext userContext = n

  • Date is not being saved!

    I have created a form in Livecycle. I'm pretty new to this tool. I noticed something today that is VERY bothersome. I use automatic date fields so by standard the form fills in todays date. When I hit save I was thinking it saved the date it was save

  • No video on video podcasts

    I recently got a video podcast from the iTunes store. It downloaded, and I synced my ipod (60 gig). I go to play it on my ipod, and all I get is audio. I don't get any video. Any suggestions?