Problem with shareobject.send()

I have a problem with shareobject. the Send method does not work. I work with AS3
My code
Server :
application.onAppStart = function()
  this.text_so = SharedObject.get("text_so", false);
application.onConnect = function(client)
  this.acceptConnection(client);
  this.text_so.send("MandarMensaje","OK");
Client:
                text_so=SharedObject.getRemote("text_so",nc.uri,false);
                text_so.connect(nc);
                text_so.client=this;
                text_so.MandarMensaje = function() {
                    trace('');
This code have a error , I need an example of function definition is executed from the server.

Hi,
In your client side function you have not declared
text_so.MandarMensaje = function() {
                    trace('');
Here you have not declared an argument, while on the server side you are also sending an parameter "OK" with the function call SO.send("fnName","OK");
So you try replacing the client side definition as
text_so.MandarMensaje = function(info) {
                    trace(info);
If you still face problems, please revert back and also state the error you are getting. Also on the server side try checking the return value of the SO.send method to see if it returns true or false.
Thanks,
Abhishek

Similar Messages

  • Problem with file sender adapter and endSeparator

    Hy,
    have the following situation: with a sender File adpater i have to receive the same structure of data but in two mode.
    1) First mode : each recorset is defined as a file line
       Example (not fields separator):
       fielda,fieldb,fieldc
       field2a,field2b,field2c
    2) Second mode : recorset of the same line without end
        separator and fieldseparator
       Example (not fields separator):
       fielda,fieldb,fieldc,field2a,field2b,field2c,......
    I configured the adapter as follow.
    structure.fieldFixedLengths      1,2,3
    structure.fieldNames             field1,field2,field3
    structure.lastFieldsOptional     YES
    structure.processFieldNames      fromConfiguration
    structure.endSeparator           'nl'
    PROBLEM
    Mode 1) works but mode 2) doesn't work.
    Could anyone solve my problem??
    Thank's
    Mati

    Hi,
    Try using two differnt record structure name for each mode.for eg give it as structure1 and structure2.then u give the content conversion parameter for both the recordset depending on ur requirement i.e, with and without end seperator.
    regards
    jithesh

  • Problem with Adobe Send Email functionality

    I have come across an issue in Adobe Reader 9 where if a PDF doucment loads with an IE frame, and you click the 'Send Email' button, the subject line is blank.
    Example URL: http://sc.openoffice.org/excelfileformat.pdf
    On clicking the Send Email button -> Send Copy
    Does anyone know a workaround to get the subject line populated?
    In addition, with previous versions of Abode (6,7,8) the subject line defaults to the name of the PDF instead of the PDF title? Is there a way of changing this?
    Any help would be most appreciated.

    I'm sorry to hear that you're having a problem with sending your files through Adobe Send.  Can you provide more details?
    What type of file are you sending?
    When you download the file yourself, is it blank?
    Are all recipients having the same problem?
    Do the recipients get a Preview of the file?
    Are they seeing the blank document as a Preview as well as after downloading?
    Would it be possible for you to send the file to me through Adobe Send?  I will provide you with my email address in a Private Message.

  • Another problem with SOAP sender

    I have another problem with SOAP scenario in a different environment (PI 7.0) from my earlier post.
    Scenario:
    Soap Sender -> PI -> Soap Receiver
    Following steps from GoogleSearch SOAP scenario in the SAP How-to Guide for SAP NetWeaver '04 entitled: "How To... Use the XI 3.0 SOAP Adapter" version 1.00 - March 2006.
    I have loaded in the api.google.com/GoogleSearch.wsdl file as an External definition and created the SOAP receiver as described in the How-to guide.  It takes a doGoogleSearch as input and sends back a doGoogleSearchResponse (Sync Call). 
    Note that the GoogleSearch.wsdl contains a complex type ResultElementArray that refers to ResultElement\[\], and a DirectoryCategoryArray that refers to DirectoryCategory\[\].  The ResultElement and DirectoryCategory types are defined in the GoogleSearch.wsdl file.
    Problem One:
    The generated WSDL for the SOAP sender contains the ResultElementArray and DirectoryCategoryArray types but it DOES NOT contain the required ResultElement and DirectoryCategory types.  XML Spy complains that this WSDL is not valid because the type ResultElement\[\] is not defined.
    Problem Two:
    I generate a SOAP message in XML Spy, provide values for the doGoogleSearch fields, and send.  In SXMB_MONI, the SOAP sender payload contains only the <key> value from the doGoogleSearch message body, i.e. <part name="key" type="xsd:string" />
    The other doGoogleSearch fields seem to be missing, i.e.
      <part name="q" type="xsd:string" />
      <part name="start" type="xsd:int" />
      <part name="maxResults" type="xsd:int" />
      <part name="filter" type="xsd:boolean" />
      <part name="restrict" type="xsd:string" />
      <part name="safeSearch" type="xsd:boolean" />
      <part name="lr" type="xsd:string" />
      <part name="ie" type="xsd:string" />
      <part name="oe" type="xsd:string" />
    Does anyone know why:
    (1) PI/XI seems to leave out the ResultElement and DirectoryCategory types from the SOAP sender service WSDL file?
    (2) The doGoogleSearch message seen in SXMB_MONI contains only the first <key> field, and not the other fields?
    Thanks for any help with this.

    I have another problem with SOAP scenario in a different environment (PI 7.0) from my earlier post.
    Scenario:
    Soap Sender -> PI -> Soap Receiver
    Following steps from GoogleSearch SOAP scenario in the SAP How-to Guide for SAP NetWeaver '04 entitled: "How To... Use the XI 3.0 SOAP Adapter" version 1.00 - March 2006.
    I have loaded in the api.google.com/GoogleSearch.wsdl file as an External definition and created the SOAP receiver as described in the How-to guide.  It takes a doGoogleSearch as input and sends back a doGoogleSearchResponse (Sync Call). 
    Note that the GoogleSearch.wsdl contains a complex type ResultElementArray that refers to ResultElement\[\], and a DirectoryCategoryArray that refers to DirectoryCategory\[\].  The ResultElement and DirectoryCategory types are defined in the GoogleSearch.wsdl file.
    Problem One:
    The generated WSDL for the SOAP sender contains the ResultElementArray and DirectoryCategoryArray types but it DOES NOT contain the required ResultElement and DirectoryCategory types.  XML Spy complains that this WSDL is not valid because the type ResultElement\[\] is not defined.
    Problem Two:
    I generate a SOAP message in XML Spy, provide values for the doGoogleSearch fields, and send.  In SXMB_MONI, the SOAP sender payload contains only the <key> value from the doGoogleSearch message body, i.e. <part name="key" type="xsd:string" />
    The other doGoogleSearch fields seem to be missing, i.e.
      <part name="q" type="xsd:string" />
      <part name="start" type="xsd:int" />
      <part name="maxResults" type="xsd:int" />
      <part name="filter" type="xsd:boolean" />
      <part name="restrict" type="xsd:string" />
      <part name="safeSearch" type="xsd:boolean" />
      <part name="lr" type="xsd:string" />
      <part name="ie" type="xsd:string" />
      <part name="oe" type="xsd:string" />
    Does anyone know why:
    (1) PI/XI seems to leave out the ResultElement and DirectoryCategory types from the SOAP sender service WSDL file?
    (2) The doGoogleSearch message seen in SXMB_MONI contains only the first <key> field, and not the other fields?
    Thanks for any help with this.

  • Niggly problem with Hotmail - Sending from a third party email address

    I need true push email on my BlackBerry, but also need access from a PC and need to send from my own email address. The easiest way I've found to do this is to forward all emails to my own address to a Hotmail address and use Hotmail as my main provider. Everything works as it should - I've got Windows Live Mail setup on my PC and all emails are sent to the BlackBerry the instant they're received. However, I've got a niggling problem with sending emails from the BlackBerry...
    On the Hotmail website, I've set my own email address as the default "From" address and in Windows Live Mail, I've set my email address as my own address. So, if I send email from the Hotmail site or from Windows Live Mail, my own email address is used as the "From" address and not the Hotmail address. If I send email from the BlackBerry, it uses the Hotmail address as the "From" address and not my own address. I've set my own email address as the "Reply To" address in BlackBerry Internet Service but it still shows the Hotmail address. I can't see anyway to change this and it's the only problem I have...
    I have tried the GoogleMail service, and this worked fine but every email I sent (either from Google Mail, Outlook or the BlackBerry) would copy itself to the BlackBerry and was getting a bit of a pain.
    I have also tried Yahoo Mail but this wouldn't allow me to send email from another email address.
    Any ideas from anyone? Either to allow emails sent from my BlackBerry to show my own email address as the "From" address, or to stop emails sent through Google Mail to copy themselves to the BlackBerry?

    clnock wrote:
    I need true push email on my BlackBerry, but also need access from a PC and need to send from my own email address. The easiest way I've found to do this is to forward all emails to my own address to a Hotmail address and use Hotmail as my main provider. Everything works as it should - I've got Windows Live Mail setup on my PC and all emails are sent to the BlackBerry the instant they're received. However, I've got a niggling problem with sending emails from the BlackBerry...
    On the Hotmail website, I've set my own email address as the default "From" address and in Windows Live Mail, I've set my email address as my own address. So, if I send email from the Hotmail site or from Windows Live Mail, my own email address is used as the "From" address and not the Hotmail address. If I send email from the BlackBerry, it uses the Hotmail address as the "From" address and not my own address. I've set my own email address as the "Reply To" address in BlackBerry Internet Service but it still shows the Hotmail address. I can't see anyway to change this and it's the only problem I have...
    I have tried the GoogleMail service, and this worked fine but every email I sent (either from Google Mail, Outlook or the BlackBerry) would copy itself to the BlackBerry and was getting a bit of a pain.
    I have also tried Yahoo Mail but this wouldn't allow me to send email from another email address.
    Any ideas from anyone? Either to allow emails sent from my BlackBerry to show my own email address as the "From" address, or to stop emails sent through Google Mail to copy themselves to the BlackBerry?
    Hi,
    I've had this sent items in my inbox, problem with Gmail.  You can add a filter from the settings page of your gmail account.  The filter should be applied to all emails from your email address [[email protected]] and skip the Inbox should be selected.
    Have you tested the "Reply to" option properly?  Send a mail from your BB to a friend and ask them to hit the reply  button, see which account it goes to.
    ===========================================================
    If I've helped, please click the Kudos button.
    If your issue has been resolved, please mark it as solved.
    Joe
    ===========================================================

  • Problems with OWA_COOKIE send and get

    Hi all,
    I have a problem with OWA_COOKIE-package. What I'm trying to do is to integrate Oracle eBS and an APEX app. The application resides on different databases and servers.
    I'm basing my code on this white paper:
    http://www.oracle.com/technology/products/database/application_express/pdf/Extend_Oracle_Applications_11i.pdf
    I have the function set up in eBS and it redirects me to my APEX login page. The next step is to pass a cookie with the user name password to the APEX app. Here the problems begins.
    My launch code in the eBS database (lots of hardcoded values just for the test):
    PROCEDURE xxapex_launch (application IN NUMBER DEFAULT 107
                           , page IN NUMBER DEFAULT 1
                           , request IN VARCHAR2 DEFAULT null
                           , item_names IN VARCHAR2 DEFAULT NULL
                           , item_values IN VARCHAR2 DEFAULT NULL) AS
    BEGIN
      OWA_UTIL.mime_header('text/html', false);
      OWA_COOKIE.send (name => 'APEX_APPS_107',
                       value => 'daniel:development',
                       expires => sysdate + 365,
                       path=>'/');
      OWA_UTIL.redirect_url('http://server:8090'||'/apex/f?p='||
                            application||':'||page||'::'||request||':::'||
                            item_names||':'||item_values);                       
    END xxapex_launch;
    The application process in APEX that should read the cookie(on-load before header):
    DECLARE
      c OWA_COOKIE.cookie;
      a wwv_flow_global.vc_arr2;
    BEGIN
      c := OWA_COOKIE.get('APEX_APPS_107');
      a := htmldb_util.string_to_table(c.vals(1));
      :P160_USERNAME := a(1);
      :P160_PASSWORD := a(2);
      IF :P160_PASSWORD IS NOT NULL THEN
        wwv_flow_custom_auth_std.login(
           P_UNAME => :P160_USERNAME,
           P_PASSWORD => :P160_PASSWORD,
           P_SESSION_ID => v('APP_SESSION'),
           P_FLOW_PAGE => :APP_ID||':160');
    __END IF;
    END;The error I get is no-data-found when this is run:
    :P160_USERNAME := a(1);
    The c.num_vals is 0 and what I can understand OWA_COOKIE.get does not find my cookie. Is there anybody out there that can point on what I'm doing wrong?
    Regards Daniel

    Back on this....
    Is there somebody that have successfully implemented the solution described in?
    http://www.oracle.com/technology/products/database/application_express/pdf/Extend_Oracle_Applications_11i.pdf
    Questions:
    Should I create a custom login page or use the default (that using my custom Authentication Scheme)?
    In the white paper where it's described on how to create the application process (that reads the cookie) it says (page 5):
    "This process should be conditional and should not be run if the login page is processing a logout request."
    Does somebody know on how to achive this?
    In my case my eBS is on one server and the APEX installation is on another server, I don't know if that's
    what preventing it to work.
    I'm trying to make a very simple proof of conecpt, my app only contain one login page (the default) and
    one blank HTML-page. I have a database link between my APEX and EBS database (using APPS user). My
    app works fine in a stand-alone scenario. But when I start it from EBS I get the login page (the appl.
    process code has not fired) and if I tries to login using a username and a pwd I can se that the
    appl. process fires and is reading the cookie correctly. The problem is that it "hangs" and it seems that
    appl. process fires over and over again (can see that in my log table).
    My code:
    The Authentication Function
    create or replace FUNCTION demo_ebiz_suite_auth
    (p_username in VARCHAR2,
    p_password in VARCHAR2) return BOOLEAN is
    begin
    __return true; /* can log in with whatever */
    end;
    Application Process - On load: Before header (page template header)
    DECLARE
    __c OWA_COOKIE.cookie;
    __a wwv_flow_global.vc_arr2;
    BEGIN
    __demo_toLog('APEX process', '1');
    __c := OWA_COOKIE.get('APEX_APPS_'||:APP_ID);
    __a := htmldb_util.string_to_table(c.vals(1));
    __:P101_USERNAME := a(1);
    __:P101_PASSWORD := a(2);
    __demo_toLog('APEX process', ':P101_USERNAME '||:P101_USERNAME);
    __demo_toLog('APEX process', ':P101_PASSWORD '||:P101_PASSWORD);
    __demo_toLog('APEX process', ':APP_ID '||:APP_ID);
    __IF :P101_PASSWORD IS NOT NULL THEN
    ____demo_toLog('APEX process', 'before trying to login');
    ____wwv_flow_custom_auth_std.login(
    ______P_UNAME => :P101_USERNAME,
    ______P_PASSWORD => :P101_PASSWORD,
    ______P_SESSION_ID => v('APP_SESSION'),
    ______P_FLOW_PAGE => :APP_ID||':1'
    ____demo_toLog('APEX process', 'after login');
    __END IF;
    EXCEPTION
    __WHEN OTHERS THEN
    ____demo_toLog('APEX process', 'Fel: '||SQLERRM);
    END;
    Maybe I'm doing some simple misstake here but I can't see it. I need a second opinion.
    Thanks.
    /Daniel

  • Recipients cannot open files sent through Adobe Send. There was no problem with Adobe send Now. They see a blank page only! Please help!

    My recipients only get a blank page. I show file sent. This is with Adobe Send. Adobe Send Now had no problem.

    I'm sorry to hear that you're having a problem with sending your files through Adobe Send.  Can you provide more details?
    What type of file are you sending?
    When you download the file yourself, is it blank?
    Are all recipients having the same problem?
    Do the recipients get a Preview of the file?
    Are they seeing the blank document as a Preview as well as after downloading?
    Would it be possible for you to send the file to me through Adobe Send?  I will provide you with my email address in a Private Message.

  • I have problem with sms sending

    i have problem with sms sending

    First don't publish private information like the IMEI number.  Second, why do you think people here can read your mind?  If you have a problem then tell us something about the problem.  We cannot guess at what your problem might be let alone offer a solution.

  • Problem with JDBC Sender adapter

    hi guys!
    I´ve problem in PI 7.0, with the JDBC Sender Adapter, execute select sentence and update status in Oracle database.
    In RWB Message Monitoring and SXMB_MONI I can't see any message.
    Someone have any idea how to fix it?
    Thanks in advance.

    Hi David,
    First check on the sender communication channel, if no data has been picked up by PI on channel,
    then check the configuration of channel in the ID, especially select query.
    If that is ok, then ask the sender application team(oracle database team) to run the query on their side
    and to check if they are getting any data.
    There could be the possibility of error in data also.
    -Supriya.

  • Problem with message sending.

    My Mail has stopped sending messages. They simply end up in my outbox. The systen has been working perfectly well and I have not knowingly altered any settings. My provider is yahoo and that works fine if I use it directly. Any advice?

    Don't you have to pay extra to get Yahoo POP mail? That is how you would be connecting on your Mac and that access wasn't free last time I checked.
    You may want to review the help documents over at Yahoo to be sure they do not charge for POP access. If they do then that is your problem and no adjustments on the Mac will let you in, as access will be blocked on Yahoo's server - for both incoming and outgoing mail.
    You would still be able to get in using the Web interface but not through Mail.
    Update: Just checked - POP access is $20/year for Yahoo. Sorry for the bad news. http://overview.mail.yahoo.com/enhancements/mailplus
    Message was edited by: sdpitbull - Updated with news on fees for POP access for Yahoo

  • Problems with sent/sending folder, not able to quit??

    I am having issues with my Mail 3.6 application recently.
    Basically, Mail works perfectly for a few minutes after being opened (it checks new mail, sends mail, etc). Then, after a few minutes, the "Sent" folder turns into "Sending" with that spinning icon that indicates it is sending an email, when I have not sent anything.
    Once this begins, I cannot send or save emails, or get any new ones. Furthermore, I cannot even quit the Mail application, and have been having to use the "force quit" option. Today, however, I have not even been able to get it to force quit all of the time, and have been having to shut down the computer.
    This is getting increasingly annoying because every time I want to check for or send mail, I have to force quit or restart my computer.
    Furthermore, within the "Sent" folder (before it changes to "Sending" unexpectedly), two recent emails are mixed up-- while the "subject" and "to" fields of sent emails look okay, when I click on them, the actual contents of the emails aren't what I sent, they are emails from 1-2 years ago. These two problem emails have been marked as junk by Mail.
    Sorry for the long post, but there are issues with my "sent" folder that are making email exasperating and I do not know what to do! Does anyone know what is wrong with my Mail?

    I seem to be having a similar problem.
    Mail wont quit, unless by forced quit, and
    Mail keeps getting old mail and the spinning wheel keeps turning forever.
    did you find an answer?
    Don

  • Problem with Soap Sender CC

    Hi,
    SOAP - Proxy.
    I have 3 seperate Scenarios in PI 7.0 in different Name space, with different Message interface names, under same SWC.
    I imported them to PI 7.1 and used the same format that help says... with Service:cc and gave it to the calling service.
    During my import, I noticed that the Message Interface and Name space were knocked off from the SOAP Sender adapter in PI 7.1. The scenarios are configured and working currently.
    I have 3 CC in this format. In Soap sender CC, we will specify NS and Interface name. Thus I had to use 3 CC.
    As per SAP Note 856597, the sender CC format should be...
    http://host:port/XISOAPAdapter/MessageServlet?senderParty=FP&senderService=FS&interface=IF&receiverParty=TP&receiverService=TS&interfaceNamespace=IFNamespace
    Now, in 7.10 we dont need to specify NS and Message Interface in soap sender CC. Hence, I created 3 sender URL for each scenario to call to PI 7.10 ( based on the interface / NS names ) and I have created 1 CC only instead of 3. This I thought would work because the sender CC is not tied with NS or MI any more, which are included in URL, and thus I have 3 different calling URLs.
    Now, when I do this and activate, it is always calling only one service all the time.
    Regards,
    Venkat.

    I have used the other channels in the same format. only NS and MI name changed. Sender and receiver are same.
    We do specify outbound Interface and its NS in sender Soap CC prior to 7.1.
    Morever, I am following the format as per the note I specified above.
    It is able to call PI 7.1 succesfully but failing to call proper IM and MM.
    No error mesage but only one scenario is called all the time.
    Its like this...
    prior to 7.1, we will have MI and NS info on the sender Soap sender CC. Hence we just mention the name of the CC in the target URL along with service. so it picks up the NS and MI from CC.
    in 7.1, since we dont specify NS and MI in sender Soap CC, we have to notify the sender side MI and NS and we do that in sender side URL( to be given to the calling system ).
    Now as per my understanding, since no NS or MI dependant info is speicfied in CC, I thought we can use one single CC instead of 3.
    See my thought looks reasonable ...
    but wondering why it isnt working.
    Regards,
    Venkat.

  • Problem with File Sender

    Hi All,
    I'm using the sync-async bridge for the following scenario.
    An HTTP request(sync) is made to XI and the message is passed to the first receive step of a BPM. The BPM will send the message asynchronously to a business system which has a file adapter and creates a file. Another file adapter polls for this file (Delete Mode), and as soon as the file is created, reads it and sends a message to the Second receive step of the BPM asynchronously. Then the Second Send step will synchronoulsy send this message back and closes the SA-Bridge.
    The problem is in the Second receive step. Instead of sending an asynchronous message after reading the file, the message sent is shown synchronous. The interface used is also asynchronous. Also the file adapter is not deleting the file after picking it up. It continuosly reads the same file and sends many messages.
    Does someone have any idea, why this problem occurs. Note that I'm not using an integration scenario. I have created 3 receiver determinations.
    1. Fromm HTTP to BPM
    2. From BPM to File System
    3. From File System to BPM (This step gives the problem)
    Can someone help me out?
    Thanks,
    Sandeep

    Check if ur response msg is correlated to request message, or else XI will not be able to map the response to request structure
    if in doubt chk this blog
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi

  • Problem with Posting  Sender IDOC

    Hi,
    I am Integrating SAP R/3 with a web browser Using SAP XI
    Sender     : SAP R/3     -
    > IDOC Adapter  
    Receiver   : Web Browser----->Soap Adapter
    In SAP R/3 I am doing for " PM Module"
    for Transaction IE02 ( Change Equipment),
    This Transaction is Used to change any details of that Equipment.
    I Identified the Standard IDOC which is created by using BAPI   
    "EQUIPMENT_CHANGE.EQUIPMENT_CHANGE01"
    I configured ALE at Sender and configured Soap Adapter at receiver side.
    <b>My Query is,</b>
    Now I want to Post the IDOC , For the Above IDOC How should i send.
    ( For Example for Matrerial MATMAS for Posting IDOC it has transaction BD12)
    But for Posting My IDOC wat will be the transaction and How should I post it.
    Points will be awarded for the answer.
    My Email ID is : [email protected]
    Regards,
    Jayasimha Jangam

    Hi Jayasimha,
    You should do the following configurations to post an IDoc from R/3 to XI.
    Once check wheather these configurations are done.
    <b>SAP XI</b>
    1) RFC Destination (SM59)
    a) Choose create.
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#.
    e) Enter the Gateway host as same details above SID/URL.
    f) Gateway service is 3300+system number#.
    g) In the Logon /Security tab, enter the client user & Password details of Destination system.
    h) Test the connection and remote logon.
    2) Create Port (IDX1)
    a) Select create new button
    b) Enter the port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client.
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Load Meta Data for IDOC (IDX2)
    a) Create new
    b) IDOC Message Type
    c) Enter port created in IDX1.
    <b>SAP R/3</b>
    1) RFC Destination (SM59)
    a) Choose create.
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#.
    e) Enter the Gateway host as same details above SID/URL.
    f) Gateway service is 3300+system number#.
    g) In the Logon /Security tab, enter the client user & Password details of Destination system.
    h) Test the connection and remote logon.
    2) Create Port (We21)
    a) First Select Transactional RFC and then click create button
    b) Enter the destination port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client.
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Create Partner Profile (WE20)
    a) Create New
    b) Create the Partner no. name as same the logical system name of the destination system.
    c) Select Partner type LS
    d) Enter details for Type: US/USER, Agent, and Lang.
    e) Click on the + button to select the message type.
    f) Select Partner no. and LS which ever create above.
    g) Select Message type
    h) Select Process code related to the Message type.
    I) save.
    Regards
    Santhosh
    Remember to set the thread to solved when you have received a solution

  • Problem with File Sender directories

    Hi everybody.
    I have a File Sender.
    I´d like to generate dynamically the "Archive Directory" and "Directory for Archiving Files with Errors"
    How could I get that?
    Regards

    Hi Cristian,
    Here we have to see two things :
    1. For one sender communication channel you can have only one Archive directory and
         as a standard it has to be hard coded while channel configuration.doing it dynamically is not possible i guess.
         if you don't have too many archive directories using multiple channels would  be an option.
    2. How you will identify the file with errors ? If you have some conditioning to check for a invalid
       file then i think you can  configure a service with a conditions to route all the invalid files through one channel
       in receiver determination(default receiver).
        Or if you can tell if the file is good or bad , only when the target system receives and validates
        it then  i think a BPM can be configured to receive the ack flag and send the file to Directory for
       Archiving Files with Errors.
    Regards,
    Srinivas

Maybe you are looking for

  • Budget is not getting displayed in Report S_ALR_87013558

    Hi Friends, For project the budget is not getting displayed in Report S_ALR_87013558 though the budget is planned by TCode: CJ30 and released also by TCode: CJ32 Is there any setting in customising in information systems to display in the report. Ple

  • MacOsX 10.9 cannot install or update anymore creative cloud applications including Desktop

    Hi I recently updated Lightroom5 and today I was trying to open an image in PhotoshopCC when I have been asked to update Camera Raw. Since then I tried everything to make it install but I always had "error code 7 , driver wan not added," error messag

  • G/L account in the P.R

    Hello:   In some type of material that a got, at the time to create a purchase requisition or a purchase order imputed to a Maintenaince order, the system shows me by default the G/L account in the account assigment tab.  But, for any reason, in othe

  • Caller 09 contains an error message

    when i try to load data(full up load) from ODS  to CUBE  i am getting error .Error mesage is the followed,pls suggest me The error occurred in Extractor Refer to the error message Type of error mesage You do not have authorization to extract from Dat

  • Scale in java

    I need scale in java application which will show me in meters,km,cm on X and Y axis and in the panel i will draw my figure by free hand. I have created panel with freehand drawing feature using Paint and drawLine() APIs. Can any one tell me how to ad