Create an Output of the PO Notification

Hi all,
I'm creating a custom program (in SRM GUI mode) which needs to trigger an output to the vendor similar to the action perform on the web. But then I'm not sure is there a function module to do it?
I know that the controls in SPRO is pointing to CL_PD_PO_PROCESSING_BBP under method PROCESS_BBP_PO_MAI but I'm not too sure how to call it in my program. My program is pretty simple, input the PO GUID and execute. The program should triggers and output to the Vendor similar to the ones perform on the Web whereby we click on Order and Send Immediately.
Any help would be much appreciated. Thanks a lot.

>
DBMS_OUTPUT.PUT_LINE('HI EVERYONE');
Actual result :
SALUT TOUT LE MONDEMy GOD!!!!!*, or should I say Mon DIEU!!!!*
You have implemented a French translator in a mere 3 lines of
software!!!
Vous avez reussi a faire un logiciel de traduction en 3 lignes de code!!!
This is really good news - forget about Babelfish or actually learning*
the language, now all I have to do is use your
DBMS_OUTPUT.PUT_LINE("______text from Le Monde here________") and
I get the article.
Sacre bleu!!
Paul...

Similar Messages

  • Create report output to the Client of the Application Server inst.of Server

    Hi,
    Please suggest the soution for the below:
    We are using SET_REPORT_OBJECT_PROPERTY and WEB.SHOW_DOCUMENT to create report. Now Requirement is to save the report output to Client instead of server. I tried to use WEBUTIL but web util can be used from form only becuase that is using form item.
    (1) We are calling all our report from a form. Is there any option to trigger a action when ever a report job is created in Application server (report server)
    (2) Please let me now is there any option to create the output directly to client of application server 10G R1WIN , 10GR2WIN or in 11G. If yes please let me know the details.
    Wtih Thanks & Regards
    K.Sundar
    Edited by: 870860 on Jul 13, 2011 10:27 PM

    Hi,
    Please suggest the soution for the below:
    We are using SET_REPORT_OBJECT_PROPERTY and WEB.SHOW_DOCUMENT to create report. Now Requirement is to save the report output to Client instead of server. I tried to use WEBUTIL but web util can be used from form only becuase that is using form item.
    (1) We are calling all our report from a form. Is there any option to trigger a action when ever a report job is created in Application server (report server)
    (2) Please let me now is there any option to create the output directly to client of application server 10G R1WIN , 10GR2WIN or in 11G. If yes please let me know the details.
    Wtih Thanks & Regards
    K.Sundar
    Edited by: 870860 on Jul 13, 2011 10:27 PM

  • Create an output without the sql commands

    Hi,
    i have the following procedure:
    CREATE OR REPLACE PROCEDURE test IS
    BEGIN
    DBMS_OUTPUT.PUT_LINE('HI EVERYONE');
    END test;
    SET serveroutput ON;
    SET pagesize 500 ;
    SET linesize 200 ;
    SET heading off ;
    SET echo off;
    spool test.html;
    exec test;
    spool off;
    But i only want to output the 'HI EVERYONE' sentence in my html document.
    Desired result: HI EVERY ONE.
    Actual result :
    SQL> exec test;
    SALUT TOUT LE MONDE
    SQL> spool off;
    Thanks

    >
    DBMS_OUTPUT.PUT_LINE('HI EVERYONE');
    Actual result :
    SALUT TOUT LE MONDEMy GOD!!!!!*, or should I say Mon DIEU!!!!*
    You have implemented a French translator in a mere 3 lines of
    software!!!
    Vous avez reussi a faire un logiciel de traduction en 3 lignes de code!!!
    This is really good news - forget about Babelfish or actually learning*
    the language, now all I have to do is use your
    DBMS_OUTPUT.PUT_LINE("______text from Le Monde here________") and
    I get the article.
    Sacre bleu!!
    Paul...

  • Creating pdf-output in Germany

    Hello,
    I have created a report with Developer 6.08 on a Windows NT 4.0-Client.
    The report creates pdf-output.
    The compiled report is run with rwrun60 on several PC with also NT 4.0.
    On some PC the output file is correct and can be read by the Acrobat Reader. On others the numbers in the created
    output file have a (german?) comma as decimal seperator.
    These files cannot be read by the Acrobat Reader.
    The regional settings on all PC are set to "Deutsch(Deutschland)".
    The NLS_LANG is set to AMERICAN_AMERICA.WE88ISO59P1 and the "decimal"-variable in the report is a dot.
    There must be some difference between the PC, but where is it?
    Thanks, Birgit

    Birgit,
    There was a bug with some german printer drivers where if you printed a report to that driver, afterwards you would see this behaviour with PDF output. This was fixed in an earlier 6i patch set. I would suggest that you download the latest 6i patchset from metalink and install that.
    Regards,
    Danny

  • Xsql servlet: creating pdf output

    hello,
    is it possible to create pdf output with the xsql servlet???
    i know that html is possible. i'm a beginner..
    thanks
    cleo

    Birgit,
    There was a bug with some german printer drivers where if you printed a report to that driver, afterwards you would see this behaviour with PDF output. This was fixed in an earlier 6i patch set. I would suggest that you download the latest 6i patchset from metalink and install that.
    Regards,
    Danny

  • XSF Output from the Smartform

    Hi,
    How do I create XSF output from the Smartform(PO).
    Appreciate your reply.
    Thanks,
    Ramesh

    hi ramesh,
    below is the link i found some information about XSF output.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a5/28d3b6d26211d4b646006094192fe3/content.htm
    reward me if useful.......
    thanks,
    gupta pullipudi

  • How to create a errortag in the XML-Output ?

    Hey
    who can help me creating a error-tag in my XML-output of a PL/SQL procedure ?
    Enviroment:
    Oracle DB is 8.1.7 with installed XDK-package (in a few
    weeks perhaps Oracle 9i). I've no problems to use the dbms_xmlquery-functions and -procedures.
    I've to develop a PL/SQL procedure which is called via JDBC from a JAVA program. The procedure execute a Select-Statement. The result is transformed in XML and stored in a CLOB, which is given back to the calling JAVA-program.
    There exist 2 possible result-situations.
    -1- one or more rows are found
    -2- no row is found
    Problem:
    For each of these situation the XML-Output should have a different structure and my main problem is to integrate the errortag !!!
    for -1-
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <data>
    <error err_code="NoError"/>
    <record num="1">
    </record>
    <record num="2">
    </record>
    </data>
    for -2-
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <data>
    <error err_code="NoDataFound"/>
    </data>
    Hope somebody can help me ???
    Andre

    Hey Rajat,
    thanks for your answer, but the errortag is needed by another department. They use it for their processing.
    Have you got any idea, how to integrate the errortag with the functions or procedures of the dbms_xmlquery package ??? I've got only a few days experience with the dbms_xmlquery-package, so some code examples or advices would be great !!!
    I've tried the following coding:
    out_xmlresult OUT CLOB; -- OUT Parameter of the PLSQL-Proc
    c1 CLOB;
    queryctx dbms_xmlquery.ctxtype;
    -- create XML-context
    queryctx:=dbms_xmlquery.newcontext(<selectstatement>);
    -- delete the rowsettag (use 'data' later on)
    dbms_xmlquery.setrowsettag(queryctx,'');
    -- create new tag 'data' which enclose an empty header
    -- and the data section
    dbms_lob.createTemporary(c1, TRUE );
    c1:=EMPTY_CLOB();
    dbms_xmlquery.setDataHeader(queryctx,c1,'data');
    -- rename rowtag
    dbms_xmlquery.setrowtag(queryctx,'record');
    -- set encoding tag
    dbms_xmlquery.setEncodingTag(queryctx,'ISO-8859-1);
    -- create XML-Output
    out_xmlresult := dbms_xmlquery.getxml(queryctx);
    ...but I haven't got any success !!!
    Andre

  • How do I create an excel file that has the volume output and the time at which it occured?

    Hello:
    I am using Labview to control a New Era Pump Systems automatic syringe pump and to record diameter measurements from a LaserMike optical comparator. My program is fully functional, the code is attached with all auxilliary files in the NE-50X folder. I mostly understand my program, I used drivers for the NE-50X pump found on the NI website to build my code and added to it as needed.
    If anyone has ideas about how to do any of these three things, your help is greatly appreciated. I have the output from the syringe pump going into a line graph while I run the test with the time on the x-axis and volume on the y-axis. How would I be able to create an excel file from this information? I would like the excel file to have the time in one column and the volume at that time in the next column. I though that I had wired it correctly, however I feel that the time seems to be a little off and very exact. Attached is the block diagram of what I have done.
    Hello:
    If anyone has ideas about how to do any of these three things, your help is greatly appreciated.
    Attachments:
    RATETEST.vi ‏202 KB

    Let me start by answering the specific question, and then I will provide some suggestions on the code.
    The function you want is the "Write to Spreadsheet File", which you're already using, albeit in a confusing means (more later). I was not able to find any place in your code where you're actually acquiring time information, so I don't understand your comment about the time not being exact. (I'm assuming you mean "not", even though that word was not in your actual sentence.)
    As for the code:
    As I mentioned, you're using the "Write to Spreadsheet File" twice, as well as the "Write to Measurement File" Express VI. All three seem to be logging the same information, though one of the "Write to Spreadsheet File" functions is logging some sort of volume and diameter information. Please pick one.
    You're looping around the path for one of the "Write to Spreadsheet File" functions, but not for the other two functions. Why are you looping the path in the first place?
    You' re continuously accruing data into an array to put onto an XY Graph. Please keep in mind that this means the program will slow down as it progresses as this array gets larger and larger, and LabVIEW needs to shuffle memory around. Depending on how fragmented your memory is, you may find the program will crash since LabVIEW cannot allocate a large enough contiguous block of memory for the array.
    Your wiring really needs to be cleaned up. Tip: Right-click on a wire and select "Clean Up Wire".
    In the middle of the diagram you have a case structure in which the True part has a single iteration loop that's adding 1 to the iteration and updating some local variable, and in the False part you're doing something else with it. I have no idea what you're trying to do, but surely there must be a better way to do it.
    You seem to have two tank indicators on top of each other on the front panel and then flipping the visibility of them based on some value. I would think that it would be easier to simply display both at the same time, no? As a user, I would find it somewhat perturbing to see the tanks appear and disappear.

  • The system could not create any outputs for mv type 561

    Hi,
    I tried to print out a goods receipt others in MIGO and i received "The system could not create any outputs" when i tick on output control. I tried to follow the steps in How to print the material document in MB1C movement 561 I stuck at step 4 where i cannot find MvT 561. Please help
    Chk your setting as below to get GR print out.
    . Maintain the Printer Name in MM->Inv Mgmt and Phy Inv->Print Control-> Gen Settings-> Printer Setting Enter the local printer where you want to print your Goods posting document
    2. Ensure that in MM->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Item Print Indicator, 1 stands for Matl Doc print out
    3. In MM->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Print Version, maintain Print Version 2
    4. In MM->Inv Mgmt and Phy Inv->Print Control->Maintain Print Indicator for Goods Receipt/GI/Transfer Posting Documents
    Here for Particular mvt type 101,201,121,311,313,501,521,561 etcu2026 Maintain the Print item as 1--Material document printout
    5. In MM->Inv Mgmt and Phy Inv->Output Determination->Maintain Output Types, for the Output types WE01, WE02 and WE03, ensure the following--
    Select the particular Output type then goto Details
    a. Default Values: Dispatch Time is 3 or 4 as per reqmt. and Transmission medium is 1
    b. Print Parameter is 7
    6. In MM->Inv Mgmt and Phy Inv->Output Determination->Printer Det->Printer Determination by Plant/Str Loc , Maintain the Output device for all your Plants
    7. Go to MN21, for Tr Type WE, Print Version 3, maintain Print Item as 1.
    Now the settings are ready for Printing Material doc
    8. While doing MIGO, ensure that in General Tab, you get "3 Collective Slip" beside the Print Indicator and you tick mark the field.
    9. Now depending on the setting in 5a, the Matl doc is printed. If it is 3, you have to print it using MB90. If it is 4, it is printed immediately.

    issue is resolved

  • E-mail output to the creater of the Sales Order

    Dear Gurus,
    Greetings.
    We have a request from the client to configure such that:
    1. Whenever anyone creates a Sales Order and saves, system should trigger an email output to his mail ID.
    2. Whenever anyone edits a Sales Order, the editor should get an email.
    I am told there is a partner function "Created by' which can do this in the standard system. I am not able to make it work (in PF, there are 2 actually and both are not working for me). So kindly someone help me here. I searched the forum for solutions but couldn't find the right one. So please . . . .
    Thanks to everyone and a Happy Republic Day to all my Indian friends and Good cheers to all my other friends !!
    Venkat - Hyd

    Dear Dilip Sadh,
    Thats exactly what i am saying, when i am creating output condition record, system is not accepting the Partner Function 'Created By'. that is the reason I am unable to use it and requesting the Gurus to help me solve it.
    Dear tooCann,
    I did not quite understand your suggestion, are you suggesting a Print Output or an email output? As said above i am not able to use the PF 'Created By'. Can you suggest anything else?
    Any help here plz.
    Regards
    Venkat - Hyd

  • Archivelink smartforms - Is it possible create a link if the output is XML?

    Hello expert,
    I created a link between smartforms and archivelink ti archive my form.
    This link run ok.
    Now I changed my smartform's output. I put XML output, and the link is not created .
    Why, do you some idea ?
    I have to change some paramteres to continue to archive ?
    Tks,
    Roberto.

    it's not possible

  • How to create new documet from the output of another document automatically

    Hi all
    here is the scenario, If we are creating an debit memo request and debit memo to a customer, from the output of this debit memo we need to trigger the creation of another document( Ex credit memo to another customer) automatically, how we can do this?

    Hi Dev,
    You need to create another report program for the other document along with the smartform.
    In the report program, you have to put your logic on how the other document has to be found when your document is created and the output be triggered.
    So in principle,
    There will be two programs linked to your output type.
    One will create the output of the document which is being created,
    Another program will automatically call the other target document in change mode and trigger the same output, during which the second program will be executed.
    Now the second program will create the output for the second document.
    Making copy controls wont help for this reqmt.
    Reward points if it helps.

  • Create new output and bypass the old output

    Hello Gurus,
    Currently we have an output type (YAB1) that is created for all customers and item categories for application V2. New requirement is to create new output (YAB2) that exactly works as old one with one difference is that new output type YAB2 should be created for specific customers. Also bypass creation of old output YAB1.
    I understand how can we create new output YAB2 for specific customers. How can I by pass these customers from the old output YAB1. Please help me.
    Thank you so much for your time,
    Regards,
    Pavan

    Thank you so much for your replies,
    Sampath, Can you please provide more details of how can I create requirement. Is there any possibility of using NACE condition entries.
    What I think is create a custom table and maintain customers to whom YAB2 created. When YAB1 is created I read the table and when customer is found then set return code to 4 so that it is bypassed. We need YAB1 output for other customers.
    Is there any better approach?
    Regards,
    Pavan
    Edited by: Pavan1 on May 26, 2011 12:46 AM
    Edited by: Pavan1 on May 26, 2011 12:47 AM

  • Struggling to have two document type attributes in the same notification

    Hi All,
    I need some help. I am working with Oracle Time and Labor, and am trying to get two document type attributes to play nice in the same notification message body.
    One documentation type attribute is made available to me. Here is its attribute value:
    JSP:/OA_HTML/OA.jsp?&OAFunc=HXC_TIMECARD&akRegionApplicationId=809&retainAM=Y&Action=ApprovalDetail&Timecard_id=-&APP_BB_ID-&ResourceId=-&RESOURCE_ID-&TimecardMode=TIMECARD-REVIEW&Review=Y&FromAppPage=YES&NtfId=-&#NID-&StartTime=-&FORMATTED_APP_START_DATE-
    The second one I created as a PLSQL document. This one I have simplified to just a 'Hello World'.
    When both are in the message body at the same time, the notification message body looks like this (the name of one of the document type attributes is 'TIMECARD'):
    hello world Attribute TIMECARD refers to Framework Region JSP:/OA_HTML/OA.jsp?&OAFunc=HXC_TIMECARD&akRegionApplicationId=809&retainAM=Y&Action=ApprovalDetail&Timecard_id=-&APP_BB_ID-&ResourceId=-&RESOURCE_ID-&TimecardMode=TIMECARD-REVIEW&Review=Y&FromAppPage=YES&NtfId=-3614187-&StartTime=-&FORMATTED_APP_START_DATE-.
    When either document type attribute exists by itself in the message, everything works as planned.
    Any suggestions?

    I think the problem here is caused when you token - substitute an attribute which appears in another attribute.
    Suppose that you have two document type attributes as shown below:
    1. CONTENT whose value is:
    plsqlclob:PA_PWP_NOTIFICATION.SHOW_PWP_NOTIFY_PREVIEW/&CONTENT_ID
    and
    2. CONTENT_ID whose value is: 11629
    Now, what happens is, while token substituting &CONTENT_ID in the first attribute, &CONTENT_ID is possibly being broken into
    &CONTENT and replaced with a null value and then ID is left as is. The problem seems to be because CONTENTID is used
    inside another attribute CONTENT.
    The workaround here is to change the name of attribute CONTENT to some other name or change the attribute name CONTENT_ID
    to something different.
    In your case I suppose that the names of attributes you are having may be similar or one being subset of other. You can avoid the
    problem by having different names (or name which is not part of another attribute's name).
    If this does not solve the problem you can generate output of $FND_TOP/sql/wfmlrdbg.sql output for this notification id.
    Hope that helps !!
    Thanks,
    Dilbagh

  • How do I set upmy Imac to allow using both my computer speakers and a Bose SoundLink system as outputs at the same time.  I can use one or the other, but not both.

    how do I set up my Imac to allow using both my computer speakers and a Bose SoundLink system as outputs at the same time.  I can use one or the other, but not both.  From systems Preferences I must select one or the other.  I want both to work all the time.

    Hi,
    I would recommend you to use 0FI_AP_4 rather using both, particularly for many reasons -
    1. DS: 0FI_AP_4  replaces DataSource 0FI_AP_3 and still uses the same extraction structure. For more details refer to the OSS note 410797.
    2. You can run the 0FI_AP_4 independent of any other FI datasources like 0FI_AR_4 and 0FI_GL_4 or even 0FI_GL_14. For more details refer to the OSS note: 551044.
    3. Map the 0FI_AP_4 to DSO: 0FIAP_O03 (or create a Z one as per your requirement).
    4. Load the same to a InfoCube (0FIAP_C03).
    Hope this helps.
    Thanks.
    Nazeer

Maybe you are looking for

  • Copying Data From Time Machine HD

    Hi Everyone, I have a Lacie HD 500gb connected to my imac. I have been using it for the Time Machine Back Up. 2 days back the power adapter of the hard drive had gone dead, so the vendor agreed to give a stand by power adapter because, lacie will rep

  • My HP Mini 110 : Update Problems

    It appears like this: when i update my windows it appears like this: " You maybe a victim of software counterfeiting" always in my window-How can i resolve this ? Pls send me steps to fix this... Thank you. This question was solved. View Solution.

  • B2B, Receiver Party missing after SP16 Upgrade

    Hi, we upgraded XI from SP9 to SP16. After upgrade to SP16 the scenario does not work properly anymore because the receiver party information is lost. In the receiver determination I've set 2 receivers 1) party 'test' and service 'testservice1' and 2

  • Grep that finds curly quotes and changes to straight ones, but only after digits....

    Hello I am trying to find all the curly quotes that follow numbers and turn them into straight quotes. I am going to try and put this in a GREP style eventually, but in the meantime, I was testing it with find and change. Here is what I did......but

  • Saving a CC Indesign document as an IDML and then opening in CS5.5

    I have InDesign from Creative Cloud. I have designed a new technical manual for my client who has only InDesign 5.5. He wanted me to save the new file I created for him in his version so that he can open the file and make canges to it without having