Change flag deactivaion for PO output message type during change mode

Hello All,
WE are using automatic message output determination functionality for PO output type. This output type has been configured for creation and change mode under Fine tuning.
Two output type are configured, for example ZAAA is output type for ALE and output type ZBBB for  archiving.
Here  archiving functionality is used to transfer attachment from ERP system to SUS supplier portal as a pdf file. This is done via enhancement and the attachment transfer is working fine.
During creation mode both the output types are determined and successfully processed and as a result attachment is transferred to supplier portal which is absolutely correct. In the attachment all PO line item can be seen which works well.
Now I change the PO and add a new PO line item, system automatically default both the output type for change mode and upon saving both the output type are successfully processed.
Now here is the problem in change mode only the added PO line item is sent as an attachment to the supplier portal. Here the requirement is see all the PO line items including the once which were newly added.
Solution is if we uncheck the change flag for output type ZBBB during change mode then all the PO line item can be seen under the new attachment with new version.
Please let us know how this functionality can be acheived ... is there an user exit available.
We have a work around where we are running a background job every 3 mins and based on the last successfully processed message for output type ZAAA we are attaching first output type ZBBBfor archiving the changes and then ZAAA for sending the changes along with attachment to Supplier portal.However this solution is a temporary one , we need a concrete solution for this.
Please advise.
Thanks,
Yatin

Hello All,
Thanks for the reply,
But we cannot modify the existing print program as this print program is being used in different countries also.
We already know a solution that during change mode if we remove the change flag from output type ZBBB then all the PO line items along with the recent changes can be seen under the attachment under supplier portal.
The question comes now, how do we automate this processu2026 Is there any standard progam or user exit available.
Manually, if you add a message type ZBBB in ME22N tranasction for creation mode then all PO line item with recent changes get transferred but we need to automate this process for create and change PO transaction.
Thanks,
Yatendra

Similar Messages

  • Two idocs are created for one output message type

    hi all,
    we are communicating our sap idocs to external system using ALE.It is working smoothly.
    Our problem raises here,
    .idocs are creating at the time of output type attachment for purchase orders.But rarely,two idocs are creating for one message type.It means two idocs are created for same Purchase order.It makes complications for the external system.
    anyone can help me pls?
    thnks in advance..........

    thanks jurgen for ur reply,
    jurgen, the second idoc is not an "ORDCHG",It is the replica of first idoc.This one has also "ORDERS" message type.The only difference between these idocs are the time.It means the difference between the time field segments of these idocs have only three(3)seconds difference.We think that its from the system error.If it is not from the system error pls give me the explanation.
    thanks in advance.......

  • Creation Output Message Type for Scheduling Aggrement

    Hi,
    Please share the detail configuration for the Output message type for scheduling aggrement, i need to use ALE IDoc so that i can send this SA to SRM system.
    Regards,
    Pankaj

    Hi,
    Output determination process for Scheduling aggrement.
    SPRO-IMG-Material Management-Purchasing-Messages-Output Control-
    1)First create condition table based which becomes condition record for accessing the data.
    2)Create access sequence to access the data or search the based on the conditoin record in sequence  of the condition table.
    3)Define your message type like print,fax etc.
    Maintain the conditon record for the MN07 for the output type which new one you created.
    Regards
    Ravi Shankar.

  • Output Message Type

    Hi Experts
    For the Purchase Order & Outline can i maintain the same output message type ZNEU.
    But the layout forms would be different.
    Shouldn't be any issue right.
    Rgds
    MM

    Hi,
    You can have the same output type name ZNEU created for both PO & Outline agreement. But ZNEU for PO will be created under application EF & for Outline agreement it will be under application EV. Thus although the name will be same it will be under different applications. Moreover you can assign different forms & routines for PO & Outline agreement.
    I hope this answers your question.

  • Material Document output message type.

    Hi Experts
    Please advise the details to be maintained in MN23 for the below message type.
    Goods Issue Sub-con
    Material Document output message type.
    Trans./Event Type:
    Print Version:
    Print item:
    Debit/Credit Ind:
    Rgds
    MM

    SAP-MM1 wrote:
    Hi Experts
    >
    > Please advise the details to be maintained in MN23 for the below message type.
    >
    > Goods Issue Sub-con
    > Material Document output message type.
    >
    > Trans./Event Type:
    > Print Version:
    > Print item:
    > Debit/Credit Ind:
    >
    > Rgds
    > MM
    Hi,
    Trans./Event Type: WO(Goods Movement for Subcontracting)
    Print Version:1(Individual Slip)
    Print item:  3(GR/GI Slip for Subcontracting)

  • RFC destination for synchronous communication (message type SYNCH)

    Hi experts,
    I am trying to configuare ALE settings.waht i did is
    My sending & receiving systems are one server with different clients.By using SALE transaction
    1.crated logical systems.(LS_800 &LR_810)
    2.Assigned those to clients.
    3.Created RFC destination
    4. Created modelview assign sending & receiving
    systems and message type.saved it.
    4.generated Partner profile.Here i am getting below problem
    Target system LR_810
    RFC destination for synchronous communication (message
    type SYNCH)
    Partner profile LR_810 SYNCH does not exist
    Generate partner profile or
    specify outbound partner profiles for message type
    SYNCH
    Target system LS_800
    RFC destination for synchronous communication (message
    type SYNCH)
    Partner profile LS_810 SYNCH does not exist
    Generate partner profile or
    specify outbound partner profiles for message type
    SYNCH
    Regards;
    Upender.

    Hi Shital;
    Thanks for your replay;
    Still am getting the Same Error;
    Thanks;
    Upender.

  • How to change the delay for a specific message

    Hi,
    I need to change the delay for an specific message, So how can I consume message by JMSCorrelationID which is enqueued with delay?
    I am using Java and Oracle.JMS classes.
    This a sample code of the deque method
    public BasicAQData dequeue(int insId)
    try
         String usr = dbUtil.getCurrentUser();
         AQjmsStreamMessage stream_message = null;
         int id = 0;
         int priority = 0;
         int destino = 0;
         String selector = null;
         String instanceId = String.valueOf(insId);
         BasicAQData dd = new BasicAQData();
         queue = q_sess.getQueue(usr, queue_name);
         selector = "JMSCorrelationID = '"+instanceId+"'";
         receptor = q_sess.createReceiver(queue, selector);
         stream_message = (AQjmsStreamMessage)receptor.receive(sleeptime);
         if (stream_message == null) return null;
         id = stream_message.readInt();
         priority = stream_message.readInt();
         destino = stream_message.readInt();
         stream_message.clearBody();
         dd.setId(id);
         dd.setPriority(priority);
         dd.setDestino(destino);
    return dd;
    It returns the desired message if that is available; however it returns null if the message was enqueued with delay and isn4t still available.
    Thanks in advance.

    Hi Glenn,
    Messages enqueued with a delay can be dequeued by specifying message id. In your example,
    you can dequeue the message with message_id, change the delay and enqueue the message again.
    Thanks,
    Brajesh.

  • How Can I Change Format Mask For All Fields that type's Number Depend on Parameter in Report Builder 10g ?

    I want Change format mask for all fields that type's number
    Such as
    if  :parameter_value = 1 then
       all fields format mask = ' 999,999,990.000' ;
    else
       all fields format mask = ' 999,999,990.00' ;
    end if;
    Regards

    So, i have bad news for you : you'll have to rebuild again.
    Meanwhile i have excellent news for you : there's an online tool made by Johannes Henseler called Sidecar xml which builds the necessary xml file for you, sort of what you find in the Digital Publishing Folio Editor website, but saves it in your Folio folder.
    Next time you import all your folder (with that file), it will place all the necessary information, and even reorder the articles.
    Build once, play many times.

  • Specific process code for Production order message type LOIPRO

    Hello,
    Is there any specific process code for Production order message type LOIPRO.
    Request you to reply.
    Thanks
    Prashanth

    Hi Prashanth,
    sorry for last thread ... that not contain full information ...
    For message type LOIPRO you can use process code APLI.
    In IDOC PARTNER definition, the partner is linked with an IDOC TYPE and PROCESS CODE for inbound processing. This process code is in turn linked with a FUNCTION MODULE to process the IDoc such as IDOC_INPUT_INVOIC_MRM (Reff..  http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_cid519558,00.html)
    Regards,
    Amit

  • I want to change my email for my Apple ID if I change I will lose the credits that I have in the account?

    I want to change my email for my Apple ID if I change I will lose the credits that I have in the account?

    See Kappy's previous write-up.
    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • Issue with the change pointer  for the reduced message type ZMATMAS

    Hi All,
    I have created reduced message type ZMATMAS for the MATMAS to create a Idoc when change or insert material master data fields( MARA-LAENG, MARA-BREIT, MARA-HOEHE) . My Problem is that the Idoc is generated with the status (03) but the fields(LAENG, BREIT,HOEHE)  are not getting fill with the values. They are always filling with the values  '/'). I have done the following steps to create idoc for the change pointer. Please check whether i have missed some steps.
    1.     Create reduction maintenance ZMATMAS  (Tcode BD53)
    keep the default selected segments E1MARAM, E1MAKTM
    2.     Add following data to maintain table view for the message type ZMATMAS  (Tcode BD52)
    Object      Table Name     Field Name
    MATERIAL       MARA      KEY
    MATERIAL     MARA     LAENG
    MATERIAL     MARA     BREIT
    MATERIAL     MARA     HOEHE
    3.     Activate particular change pointer in BD50
    Message Type       Active
    ZMATMAS         yes
    4.     Activate change pointers u2013 Generally (Tcode BD61).
    5.     Assign Segment fields to change document fields (Tcode BD66 )
    Segment Type     Field Name     Object     Table Name     Field Name
    E1MARAM     BREIT     MATERIAL     MARA     BREIT
    E1MARAM     HOEHE     MATERIAL     MARA     HOEHE
    E1MARAM     LAENG     MATERIAL     MARA     LAENG
    6. I have done the distribution model settings (BD64) and  the idoc configurations
    1.     Logical System
    2.     RFC destination
    3.     Create port
    4.     Create partner profile
    7. I changed the fields in material master data(Tcode MM02)  and I executed the Tcode BD21.
    Idoc is generated but the fields are not getting fill with the values
    (Note: some fields  are filled with values e. g material number, material description)
    I checked the Idoc data segment E1MARAM (WE02)
    Fld name   Fld cont.
    LAENG       /
    BREIT       /
    HOEHE      /
    Can you please let me know the issue
    Prad

    Issue is solved when I select the segments and the fields in the segments (Tcode :BD53)
    Prad

  • PO Output message types for different document types

    Hi,
    I wanted the system automatically generate the messages whenever a PO is created for different document types like NB,UB,Blanketorder, Pilot run.
    These are the steps i did...plz advice any more steps to make this work
    1. the output type I am using is NEU-purchase order
    2. I have created condition records for document types NB,UB,PR etc
    I was sucessfull in getting the messages automatically for the standard(NB) PO..but not for the other document types
    Plz advice me how I can achieve this with further configurations
    Thanks
    SKid

    If you have created conditin record for all the document type in MN04 then it should work becuase doc type has nothing to do for printing config.
    this is basically a condition record.
    check your condition record

  • Output message type triggering for all

    Hi,
    I want the output messages to be triggered for particular Vendor and doc type with ALE config.
    Now the config is such tht whenever the PO is created for doc type, the output type gets triggered for ALE partner .
    So need guidance.
    Thanks

    hi,
    Please check whether the access sequence attached to your Condition type has a condition table with Document type and vendor field, if not then you can add one or create a new Access sequence and attach it to you condition type.
    Next you maintain the Condition Records for the doc type and vendor combination, and the system shall trigger the message type automatically.

  • Output message type not triggered for few POs

    ---PRs got created manually. then PRs converted into POs through background job (me59n).
    ( 25 PRs got created manually with same vendor and pur.org combination then all PRs converted into POs through ME59N. In that 20 PRs had message type automatically but remaining POs haven't got the message type )
    Condition record exists with vendor/pur.org combination.
    and all IMG settings are correct.
    medium is 8 (special function).
    and not able to replicate the issue in quality systems.
    Please Advise.
    Thanks in advance.

    PRs will not get any message type, POs will get a message record.
    How is the situation now?
    Did  you get 20 POs only, or do you have 25 POs where just 20 have a message record?
    In the first case  convert the PR manually to a PO manually and see if you get a message record. You should not enter anything manually, it is supposed to work without entering anything manually because it was meant for auto PO. In case you have to enter anything manually, then this might be an indicator why auto PO could not work.
    if the latter case, then compare a PO with and without message record on the fields that should match with your condition record.
    Do you expect the same message type for all POs, are they all in the same purchasing organisation?
    Read and check what is mentioned in KBA 1829682 - Output type is not determined in Purchase order

  • PO Output Message type to set default for two output (neu and z_mail)

    Hi,
    we have a requirement for two output( print output and external send) at the same time when the po saved or me9f, and me99 trigers. kindly guid me the procedure to do this setting in nace,mn04 and spro.
    thanks..,

    Hi
    YOur condiation record should have correctly for that, Genaraly for Email it will ask more then one combination like PO document type and Porg, Doc type/Vendor/Plant
    If condiation recocrd id correct then you can get automaitaly when you craete the PO
    Tcode for Creation of condiation record is NACR
    Bhima

Maybe you are looking for

  • Install BPEL PM on WebLogic Server 9.2 & AIX 6.1

    We are running into a BPEL PM issue while installing SOA Suite on WLS 9.2 and AIX 6.1. During server startup the BPEL application fails with the following error message: ####<May 28, 2009 12:33:47 PM CDT> <Error> <Deployer> <nsiprdsoa2> <SOAServer2>

  • Receiver File Adapter - Permission Denied

    Hi, I have a problem with posting a file to a specific address at a ftp (file adapter). I get the follwing error. <i>Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: XI_ftp_467febcd-b4df-25c4-e100-00000af501ca.tmp: Per

  • Plz help asap....Solman 4.0 inst error

    hi.. i am doing the following inst.. solman 4.0 on win 2003 x64 standard abap and java on ibm db2 udb ver9 java 1.4.2.14 x64 win i am attaching the error below .................... java.lang.NullPointerException      at java.io.Reader.<init>(Reader.j

  • ASCII and UNICODE interoperability

    Hi forum, Do you know if there are problems in a scenario with a ASCII R/3 system as backend for a UNICODE SCM (4.1 or 5.0) ? Regards. Ganimede Dignan.

  • Safari 5 crashes on non-admin account

    All: I looked and could not find my specific problem. I am running the latest OS X (non-server) and removed the third party Safari plug-ins. I have moved the cache folder to the recycle bin and restarted Safari, but the crashes continue. My admin acc