Where to see the output of my Application Engine Program ?

Folks,
Hello. I am creating my first AE program in Application Designer and test it in the 2-tier mode. I open the AE program in Appication Designer and click Edit ->Run Program. Then open the log file to see its execution and know the AE program is running out. But I don't know where to see the output of the AE program.
The AE program is only executing a SQL "select" statement. Its output is the ResultSet of the SQL.
Do any folks know where to see the output of the AE program ?
Thanks in advanced.

The AE program is only executing a SQL "select" statement. Its output is the ResultSet of the SQL.
Do any folks know where to see the output of the AE program ?The output of the select didn't go anywhere. You have to actually do something with the values selected. App Engine selects them and puts them in memory (if you tell it to through %Select), but where those values go depends on you. If you have a DoSelect, then your next action may be an SQL insert/update/delete or even another %Select. If it is another %Select, then I would expect your next action to be Call Section or PeopleCode.
If you just want to select data and print it to the app engine log file, then I would setup a step with a DoSelect/%Select and then a PeopleCode action. In your PeopleCode action, use MessageBox(0, "", 0, 0, "The value in field MYFIELD is " MYREC_AET.MYFIELD);
I wrote a blog post a few years ago with additional tips and tricks for AppEngine output: http://jjmpsj.blogspot.com/2008/05/appengine-output-tricks-reporting.html.

Similar Messages

  • Where to see the output of batch file run in java

    I use RunTime.getRunTime.exec() to run a batch file, it seems going fine. But I can not see the output of the batch file. For instance, the batch file is to print sth on the screen, but it wont display under java.
    Why and how?
    Thanks

    You get the Process and from that yoo use getInputStream().
    You need to read the stream in a seperate thread since if it fills the buffer it blocks the thread (which would be your main thread.)

  • HTTP adapter: where to see the transformed output message

    All,
    I am a beginner in Webservices/HTTP interfaces in PI. I have to make changes on an existing custom interface which uses HTTP adapter. I have done the changes in the message mapping and tested it using the test tool. It seems OK.
    However when we do end-to-end testing, data is flowing but  bussiness needs a copy of the transformed data that has been sent out from PI.
    I checked RWB->Message Monitoring-> Integration server(Database) and it showed the successful message. When I drilled further into this message, it showed the SOAP message (Version 0 and Version 1 with payload). The payload showed the data that ECC had sent to PI and not the transformed data that went out from PI to 3rd party via HTTP adapter.
    Appreciate if you could guide me in right direction regarding where to see the Output/Transformed data that is actually sent to third parties.
    I have checked SXI_MONITOR as well in PI but that also shows the payload only and not the transformed data.
    Regards
    SK
    Edited by: Shirin K on Feb 18, 2010 3:10 PM

    Hi ,
    Go to particular message in SXI_MONITOR. In Message there will be window on left hand side. There will be Technical Routing.
    Technical Routing> Payloads->Maindocument. This shows the Output data.
    If you are not able to see Technical Routing inform you basis team they need to do some configuration in SXMB_ADM
    Edited by: Rajhans Abhay on Feb 18, 2010 4:29 PM

  • Did download OS X Mountain Lion and see the features in my applications, but not reflecting in my APPS purchases.

    did download OS X Mountain Lion and see the features in my applications, but not reflecting in my APPS purchases.
    also this takes huge amount of time, almost 10 hours to download, even using 3G Net connection.

    Hi kiwirudy,
    I've had the same problem more than once since I started trying to download my 14 April purchase of OS X Mountain Lion.
    I found a property list called manifest.plist in my ~/Library/Application Support/AppStore folder which had a Boolean property called failed checked. I unchecked it and afterwards I was able to resume my download.
    Here are some steps I've found useful:
    Close the Mac App Store.
    make a copy of the  ~/Library/Application Support/AppStore folder. For some strange reason the Mac App Store likes to just delete it in some circumstances, which will mean that one has to start one's download again from the very beginning.
    Double click on the manifest.plist in one's ~/Library/Application Support/AppStore folder.
    This should open it in Property List Editor.
    Expand all the nodes (holding down the alt key and clicking on the highest collapsed node should do it.
    Find a key called failed of type Boolean and uncheck it.
    Save the manifest.plist and close it.
    Open the Mac App Store.
    The red message "an error has occured" should now be gone and one should be able to resume one's download.
    In the event that the ~/Library/Application Support/AppStore folder gets deleted:
    start the download again (it will start from the beginning), pause it and close the Mac App Store.
    copy your backup copy of the pkg file back to its sub-folder (it's a numbered folder in the ~/Library/Application Support/AppStore folder).
    Open the Mac App Store and resume your download.
    It should continue from where it left off.
    This has worked for me so far. I'm holding my breath. Don't know if I'll still be alive when it's finished.
    Regards
    Nic
    Message was edited by: n c h

  • Where to see the transaction code for a script

    Hai my dout is  where to see the transaction code for a script after assigning to  a drive programm for example i see output for medruck in me11 and for other standard scripts where can i see the  output is there any table avaible to check it

    Hi masthan,
       for sd and mm related scripts. u can use tnapr.
    Otherwise go to nace transaction u can find the script name as well as program name.
    Or u can try with TSTC table, which will give the t/c's.
    Regards...
    Arun.

  • Cannot see the output file in my first project

    Hi,
    I follow the instructions of Exercise in Chapter 4 of CAP-0501 to make the project. I wonder why I cannot see the output file in 'C:\CAPExercises\0501\exercises\Active_Project\Output'.
    There are two things I would like you know.
    1. I do not have the file 'prjFileXferInput.xml', but find and copy a xml file. Is this a problem? Does CAPS have any special requirement on schema for the input file?
    2. Is '\' and '/' a problem for Java CAPS? I notice the book using 'C:/CAPExercises/0501/exercises/Active_Project/Output�, while it is 'C:\CAPExercises\0501\exercises\Active_Project\Output' on windows. I am working on a standalone Windows 2000 computer.
    By the way, can anyone give me a confirmation that '/' and '\' is not a problem for Java CAPS, as the server or application take care of it? Is it true?
    Thanks,

    I am answering my own question. The project works.

  • Can't see the output of cast/multicast

    Hi, I can't see the output of cast/multicast.. but in sql*plus, i can..
    regards

    Hello, here's a sample...
    ops$rringor@RLR9204> create or replace type
    2 myarraytype as table of varchar2(2000)
    3 /
    Type created.
    ops$rringor@RLR9204> drop table t;
    Table dropped.
    ops$rringor@RLR9204> create table t
    2 ( id number not null ,
    3 name varchar2(10) ) ;
    Table created.
    ops$rringor@RLR9204> begin
    2 for i in 1..10
    3 loop
    4 insert into t values ( i, i||'abc');
    5 end loop;
    6 end;
    7 /
    PL/SQL procedure successfully completed.
    ops$rringor@RLR9204>
    ops$rringor@RLR9204> select a.id,
    2 CAST( MULTISET( select b.name
    3 from t b
    4 where b.id = a.id ) as myArrayType ) as names
    5 from t a ;
    ID NAMES
    1 MYARRAYTYPE('1abc')
    2 MYARRAYTYPE('2abc')
    3 MYARRAYTYPE('3abc')
    4 MYARRAYTYPE('4abc')
    5 MYARRAYTYPE('5abc')
    6 MYARRAYTYPE('6abc')
    7 MYARRAYTYPE('7abc')
    8 MYARRAYTYPE('8abc')
    9 MYARRAYTYPE('9abc')
    10 MYARRAYTYPE('10abc')
    10 rows selected.
    I can see the records under NAMES but I can't view it using SQLDeveloper.

  • How to see the output of a FORM of REMITTANCE ADVICE ( PAYMENT ADVICE )??

    Hi Experts,
    I got a SAP Script of REMITTANCE ADVICE (also known as PAYMENT ADVICE).
    And I know the VENDOR #.
    I need to see the output of this SAP Script on the screen, so, let me know that, How to test it/see its output. (I know, seeing the Customer statemet from the tx of F.27), I mean, wht r the transactions etc. stuff.
    thanq

    You should create a variant for payment advice and you can use the same while executing the t.code:F110.
    Once payment run has been completed system will generate a spool for payment advice. You can view that payment advice through t.code:SP01.

  • Report to see the output of VLPOD transaction

    Hi Gurus
         I have configured Proof of delivery concept to caputre loss of Quantity due to moisture. can any body tell me about standard report to see the output of VLPOD transaction.Full points for the correct solution.

    Hi,
    Try the t-code VLPODL, hope can help you!
    Good day
    Tao

  • Not able to see the output

    Hi all
    when i run my request using XML Report Publisher .request completes without error.
    but when i see the output it shows me a message dialogue box saying
    File does not degin with '%PDF-'
    though my template is of rtf type.
    any idea
    pls help

    What is the Output type of the concurrent program ?
    check if that is PDF?

  • Not able to see the output in sost when sending the image in email body

    I am sending the image in email body and when m trying to see the output in SOST then it showing a page 'you are not connected to the internet'
    I am able to see the output when m saving local objects but when m saving it in some package its showing me this page
    Kindly help it
    Regards
    Pratham Kapoor

    Hello Prakash,
    Thanks for the reply
    I am able to see the mail in SOST but when I click on the Display Document to see the content of the mail then I am getting this error of 'you are not connected to the internet'
    My Program is to put the logo in my email body
    I am sending you the attached image

  • I can no longer see the top menu bar in itunes.  where you see the status of syncing.  where you have the option to click and move a song you are playing to the middle of the song, etc.

    I can no longer see the top menu bar in itunes.  where you see the status of syncing.  where you have the option to click and move a song you are playing to the middle of the song, etc.

    It's iTunes screen menubar:

  • 12c where to see the enabled audited operations

    hi,
    I got to see the audited operation data in setup->auditdata but I am not able to find where to see the enabled audit operation names.
    The following command shows only the list of operations can be audited but it doesnot say whether it is already enabled or not
    emcli show_operations_list
    please suggest me
    cheers
    Tamil

    Try adding -view=DETAIL
    bash-4.1$ ./emcli show_audit_settings -view=DETAIL
    Audit Switch : Enabled (For all Operations)
    Operations configured for auditing :
    ADD_AGENT_REGISTRATION_PASSWORD : ENABLED
    ADD_CS_TARGET_ASSOC : ENABLED
    AGENT_REGISTRATION_PASSWORD_USAGE : ENABLED
    AGENT_RESYNC : ENABLED
    AG_AUD_CREATE : ENABLED
    AG_AUD_DELETE : ENABLED
    AG_AUD_MODIFY : ENABLED
    APPLY_TEMPLATE : ENABLED
    APPLY_UPDATE : ENABLED

  • CO88 - Where to See the results of Execution?

    Gurus,
    Where to see the results after executing CO88?
    Kindly guide.
    Thanks.

    Dear,
    In order maintaince screen follow the menu path CO02 - Goto> Costs> balance.
    Or you can chek in order cost sheet itself, the actual cost sum is zero or not if ZERO than means settled.
    Collectively you can see in KKBC_HOE report.
    Regards,
    R.Brahmankar

  • Where to see the size of the file in XI system

    where to see the size of the file in XI system..i mean after sending it into XI....
    Edited by: Harsha reddy on Jun 25, 2008 5:51 PM

    Hi,
    You can UDF like in Message Mapping to get the file size.
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","SourceFileSize");
    fileSize = conf.get(key);
    You have to mention adapter specific attribute for file size in file adapter.
    How to retrieve file size and XI message ID?
    Kulwinder
    Reward if Helpful

Maybe you are looking for

  • Need to capture the output of parseEscapedXML() function in a variable

    Hi All, In my BPEL process, I am fetching the XML data from the database which is stored in a CLOB column, using the database adapter. As it is in a string type I am using parseEscapedXML() function to get the XML data out. I have done the following:

  • Fault message handling in abap client proxy

    Hi experts, i have scenario like this SAPECC---XI---WEBservice i was decided to using the ABAP CLIENT proxy in sender side and soap adapter communication in receiver side i will be get the wsdl file form client problem is i am in bit of confusion lik

  • Why can't i adjust the bottom of my home page

    I recently deleted content from my home page, and rather than the bottom of the page adjusting up as it usually does, it's stuck in the old position.  i've tried adjusting the master page settings, and i've tried just deleting the space on the home p

  • Calling the next number in an array through a function?

    ow do I request the next number in an array? For example - currently being used for a loop: for (i=0; i = levelSettings[0]; i++) But when the function (named - NextLevel() ) is called I would like that loop to call the next number in that array. Exam

  • Regarding custom context created for CR_B2B application(Complaints&Returns)

    Hi, We have created a custom context for cr_b2b application. We are able to login to the application, but we are getting some compilation errors on the left hand side page (genericsearch.jsp) The errors are: ISA Framework: com.sap.engine.services.ser