Sender not find in moni..........

hi,
iam working with a senario were i cant find my sender servies in moni............senario details.......iam sending data using abap proxy to xi and receiver iam using file adapter....in IR ideveloped all DT,MT and MI....Mapping and Interface mapping.......in ID i used sender as XI adapter and receiver as File adapter....in xi part all configurations i have done..........in r/3 sytem i created outbound proxy.......in se38 i worte a report program calling data from internal table....in sm59 conntection type i used is HTTP..........wen i come back 2 xi n went 2 run my senario in SXMB_MONI..........i cant find my sender service......were problem is there...........all connections are fine.......no problem with connections.

Hi Phani ,
U can check the status  in the RWB---->>ADAPTER ENGINE
Or Make sure that the RFC connections r wel or not
Regards
Giri

Similar Messages

  • I have tried a lot to find an app or some way in email to attach multiple of pdf files in one email. I could not find anything that sends multiple pdf file in one email and still keeping the file in simple pdf format for the recipient.

    I have tried a lot to find an app or some way in email to attach multiple of pdf files in one email. I could not find anything that sends multiple pdf file in one email and still keeping the file in simple pdf format for the recipient.

    I am not aware of a way except for photos that allows you to select multiple files in an email. I even checked settings in the Adobe Reader app, and it does not show that ability.

  • Send spool as PDF, error in opening PDF- Could not find the XObject '00014'

    Hi
    I am sendind a spool as PDF and when opening the PDF I am getting error saying Could not find the XObject named ‘00014’.
    Please let me know how I can see the PDF contents proerly.
    Regards
    Bala

    Hi Bala
    Check the sample which can be useful for you.
    Pseudo code for sending PDF attachment:
    TABLES: tsp01.
      TYPES: BEGIN OF t_spool,
                          Rqident TYPE tsp01-rqident,
                    END OF t_spool.
      DATA: i_spool TYPE STANDARD TABLE OF t_spool,
                Wa_spool TYPE t_spool.
      SELECT rqident FROM tsp01
      INTO TABLE i_spool
    WHERE rqowner = sy-uname.
      SORT i_spool DESCENDING BY rqident.
      LOOP AT i_spool INTO wa_spool.
      ENDLOOP.
    YPES: l_ty_tab_pdf TYPE tline OCCURS 0.
      DATA: l_pdf TYPE l_ty_tab_pdf,
                l_spool TYPE tsp01-rqident.
    Type for binary attachment table.
      TYPES: l_ty_tab_objbin TYPE solisti1 OCCURS 0.
      DATA: l_objbin TYPE l_ty_tab_objbin.
                l_spool = wa_spool-rqident.
      CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'            
          EXPORTING
            src_spoolid                    = l_spool
            no_dialog                      = ' '
          TABLES
            pdf                            = l_pdf
          EXCEPTIONS
            err_no_abap_spooljob           = 1
            err_no_spooljob                = 2
            err_no_permission              = 3
            err_conv_not_possible          = 4
            err_bad_destdevice             = 5
            user_cancelled                 = 6
            err_spoolerror                 = 7
            err_temseerror                 = 8
            err_btcjob_open_failed         = 9
            err_btcjob_submit_failed       = 10
            err_btcjob_close_failed        = 11
            OTHERS                         = 12.
      IF sy-subrc <> 0.
        WRITE: / 'error', sy-subrc.
      ENDIF.
    **/ Convert the PDF format to the table type required for the attachment.
    CALL FUNCTION 'QCE1_CONVERT'
        TABLES
          t_source_tab         = l_pdf
          t_target_tab          = l_objbin
        EXCEPTIONS
          convert_not_possible = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
        WRITE: / 'error', sy-subrc.
      ENDIF.
    TABLES: soli.
      DATA: v_email TYPE soli-line.  “Manager’s Email
      DATA: l_adrnr LIKE kna1-adrnr. “Address Number
      DATA: l_objky TYPE nast-objky. “Object Key
      DATA: l_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE.
      DATA: l_objtxt    LIKE solisti1 OCCURS   0 WITH HEADER LINE.
      DATA: l_objpack   LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE.
      DATA: l_doc_chng  LIKE sodocchgi1.
      DATA: l_objhead   LIKE solisti1 OCCURS   0 WITH HEADER LINE.
      DATA: l_tab_lines LIKE sy-tabix.
      CONSTANTS: k_true TYPE boolean_flg VALUE 'X'.
      DATA: l_mail TYPE somlreci1-receiver.
      l_mail = v_email.
    Creation of the document to be sent as File Name
      l_doc_chng-obj_name = 'SENDFILE'.
    Mail Subject
      l_doc_chng-obj_descr =l_text-001.
    “Here text-001 will contains “Compensation Review Statement for Employee Name”
    Here we can concatenate employee first name and last name to l_text-001.
    Completing the recipient list
      l_reclist-receiver = l_mail. “Manager Email Address
      l_reclist-rec_type = 'U'.
      APPEND l_reclist.
    Mail Contents
      l_objtxt = text-002.
      APPEND l_objtxt.
    Calculate email size in bytes
      DESCRIBE TABLE l_objtxt LINES l_tab_lines.
      READ TABLE l_objtxt INDEX l_tab_lines.
      l_doc_chng-doc_size = (l_tab_lines - 1 ) * 255 + STRLEN( l_objtxt ).
    Creation of the entry for the compressed document for the email text
      CLEAR l_objpack-transf_bin.
      l_objpack-head_start = 1.
      l_objpack-head_num = 0.
      l_objpack-body_start = 1.
      l_objpack-body_num = l_tab_lines.
      l_objpack-doc_type = 'RAW'.
      APPEND l_objpack.
    Creation of the document attachment
    (Assume that the data in OBJBIN is in BMP format)
      DESCRIBE TABLE l_objbin LINES l_tab_lines.
      l_objhead = text-001.
      APPEND l_objhead.
      CLEAR l_objpack.
    Creation of the entry for the compressed/attached document
      l_objpack-transf_bin = k_true.
      l_objpack-head_start = 1.
      l_objpack-head_num = 1.
      l_objpack-body_start = 1.
      l_objpack-body_num = l_tab_lines.
      l_objpack-doc_type = 'PDF'.
      l_objpack-obj_name = text-005.
      l_objpack-obj_descr = text-001.
      l_objpack-doc_size = l_tab_lines * 255.
      APPEND l_objpack. "/ .
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = l_doc_chng
          put_in_outbox              = 'X'
        TABLES
          packing_list               = l_objpack
          object_header              = l_objhead
          contents_bin               = l_objbin
          contents_txt               = l_objtxt
          receivers                  = l_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
      IF sy-subrc <> 0.
        WRITE: / 'unsuccessful', sy-subrc.
      ELSE.
        WRITE:  / 'successful'.
      ENDIF.
    *Take note it is a requirement to do a commit work for the email to go into transaction   
      SOST.
    COMMIT WORK.  
    Regards,
    Sree

  • I was receiving and sending my emails perfectly, now nothing gets downloaded? It checks for new emails but do not find anything and I know there is. Please help

    I was receiving and sending my emails perfectly, now nothing gets downloaded? It checks for new emails but do not find anything and I know there is. Please help

    Oh, the irony of referring to yourself as "myklthebrain".  Make an appointment, at the nearest Apple store, with an Apple Genius, and hope that (s)he can sort it out.

  • Error Could not find stored procedure 'SP_DATA1FINANCE'.;CommitTrans::Send

    Hi,
    We are getting the following error when trying to send data via Input schedule or via Data Manager.:
              - Error Message -
    ExecuteSQL::Could not find stored procedure 'SP_DATA1FINANCE'.;CommitTrans::Send through SendGovernor failed;
    This same error is happening in every application, for example we have an application called Ventas, and the error occurs as follows:
              - Error Message -
    ExecuteSQL::Could not find stored procedure 'SP_DATA1FINANCE'.;CommitTrans::Send through SendGovernor failed;
    We did not have problems before when using version 5.1, this error is appearing now that we migrate to version 7.0-
    Do you have any idea what could be the cause of this error? We already tried Re-Processing Applications but still the same problem.
    Thanks
    Ana

    After you upgrade you have to save all applications.
    Bacause in V7 there are other stored procedures then in V5.
    Kind regards,
    Sam

  • I want to send a fax. I can not find an efax icon on the screen on my printer. How do I send a fax?

    I have an HP Photosmart Premium e-All-in-One Printer - C310a . I want to send a fax. I can not find an efax icon on the screen on my printer. How do I send a fax?

    This model does not include e-Fax. The product specifications are here: Product Specifications. If you want a model with e-Fax, you should check out the HP Photosmart eStation C510.
    I am an employee of Hewlett Packard.
    - - Please mark Accept As Solution if it solves your problem so others can more easily find the answer - -
    - - Please click the Kudos star if you would like to say thanks - -

  • Error RFC sender scenario :JCO.Server could not find server function

    Hi ,
    The scenario which am working is as follows:
    I already have a report in R/3 that calls a Bapi which is in CRM system, now I want to make this point-point connection through XI(RFC sender-XI-RFC Reciever) with out changing the report (only changing the RFC destination).
    I have imported the bapi from CRM to XI , changed the rfc destination(to tcp/ip) that existed in R/3 to point to XI(test connection is working fine) and also created the RFC sender adapter .
    Now on executing the report am getting the following error.
    “JCO.Server could not find server function” 
    Please, let me know where I went wrong.
    Should the function module exists on the XI server. If the functional module is not there then I am getting the  error if the function module is there in XI then every thing is working fine.

    Hi Michal ,
    Now my scenario is working . The error <b>"JCO.Server counld not find server function"</b>  got fixed by giving the system details that contain the RFC in the adapter metadata parameters in the channel configuration.
    Thanks & Regards,
    Srikanth.

  • Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back?

    Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back? It is only during videos that I previously uploaded off my phone. It loads them and tells me how long they are but when I go to press play it says can not find file. I have restarted my computer, what else can I do?

    Check the information on the song, Right-Click -> Get Info.
    In the fist pane, (Summary), you will see the AppleId (Account Name) that was used to buy the song.
    Be sure to login to use this account to register this computer to play the song
    What I often see, Is that people have many different AppleID, sometime not even knowing it, which is a big problem.

  • Program used to send email, but could not find it through tcode SOST ,why?

    i write an program which used to send email, but the config is not setup, so team leader told me that if my program is right, i could find the email status through tcode SOST, if the status is 'waiting for sending' , so the program is ok. but after test my program, i could not find the email status through Tcode SOST, (both receiption and document tabals are having the rigth content), so i don't know what is wrong with my program. is there anyone encounter this problem?

    hi: Rajvansh Ravi
    i use tcode to SCOT to find the screen as follow:
                          completed     error         in transit   waiting
    DE1(100)                  0           8               0            3(which not used my program execute)
          fax                     0           0               0            0
          int                      0           8               0            3
              w/o nodes       0           6(MESSAGE:xs826)0       
               SMTP            0           2               0        
          X40                    0           0               0            0
          RML                   0           0               0            0
          PAG                  0           0               0            0
          PRT                   0           0               0            0
    ok, the error form node W/0 is execute by my program, and i check the configue that ' *' is  there.
    so, what is wrong here?
    thanks: juzi

  • Payload structure not visible in Moni

    Hello All,
    One of the interface where we are calling RESTful webservice thru java code, when we calling java code from standalone the webservice working fine based on input parameters webservice sending response back, but the same one when I import in as Import Archive in PI, and test this scenario. I see success in moni, but  I do not see request-target structure payload. I see only request sender-payload structure in moni. 
    At this point I only testing request map for call the webservice , where I am getting this error.
    Any idea what is the cause of this? Network issue? but this java code working fine in same Network.
    Trace showing following information:
    <Trace level="1" type="T">Reading sender agreement</Trace>  
    <Trace level="1" type="T">Inbound validation by adapter does not take place</Trace> 
    <Trace level="1" type="T">Inbound validation by Integration Engine does not take place</Trace>
    Other question was , since this class file we imported into PI, how do I send the input parameters to this class file. As original sender was file, from CSV file we'll take input parameters and send those to this java code and pass it to webservice.
    Right now for testing  purpose i have hardcoded input values in Java code and trying to call this webservice, and I am using  sender side HTTP adapter to invoke this PI interface.
    One more questions was, since we are calling this webservice thru java mapping, what adapter should I use in receiver?
    Thanks,
    Gayatri.

    Hi Gayatri,
    Any idea what is the cause of this? Network issue? but this java code working fine in same Network.
    ans) Please include trace statements within java code to find out target xml created by the code.
    here are few articles/blogs on the issue . A very useful blog
    http://scn.sap.com/community/pi-and-soa-middleware/blog/2013/09/18/tracing-in-sap-pi-731-single-stack
    by  Kapila Epasinghe
    **************** - Handling and Tracing Runtime Exceptions in Java Mapping (SAP PI/XI)
    By Prasanna Krishna Mynam
    Other question was , since this class file we imported into PI, how do I send the input parameters to this class file.
    ans)  The input source XML should contain necessary values. In case you need to pass fixed values to the mapping you can look into this article parametrized java mapping
    http://help.sap.com/saphelp_nwpi71/helpdata/en/43/bc2fd4da1e1bbce10000000a1553f7/content.htm
    One more questions was, since we are calling this webservice thru java mapping, what adapter should I use in receiver?
    ans)  try to execute the java mapping code from your local system. In this case you do not require any adapter to communicate with web service right?. Apply the same principle for java mapping within PI server. Here also you do not need any receiver adapter. In fact the whole idea of using a java mapping was to avoid using a receiver adapter.
    Regards
    Anupam

  • I can not find the messages in sxmb_moni in http to rfc scenarion

    hi i'm using http client tool when i send the message its working fine i'm getting the response, but i can not find that message in sxmb_moni in http to rfc scenario
    can anyone help me

    Hi lnaki vila
    I'm using pi 7.0 version
    i can see the other scenarios like SOAP to RFC, SOAP to IDOC,FILEto IDOC
    in sender side i'm not using any communication channel and adapter engine i'm just using http client tool for testing purpose
    i'm getting the response that's fine because its a synchronous communication
    i checked sxmb_adm in that -->integration configuration LOGGING parameter of category RUNTIME is set to  ENGINE_TYPE and current value is HUB(Integration server)
    thanks in advance
    regards
    Satish

  • Can not find "Work Folder" in windows server standard edition

    Guys, I have a testing lab and all is working with the exception of the fact that I can not find "work Folder" to install it.  I'm using windows server 2012 standard evaluation copy edition.  Normally work folder should be under >file
    and storage service>file and iSCSI services.  However, it is not there.  Can someone help please
    staphisco

    Hi,
    From the overview, Work Folder is not supported in Windows Server 2012 (only Windows Server 2012 R2). 
    Work Folders Overview
    http://technet.microsoft.com/en-us/library/dn265974.aspx
    Software requirements
    Work Folders has the following software requirements for file servers and your network infrastructure:
    A server running Windows Server 2012 R2 for hosting sync shares with user files 
    If you have any feedback on our support, please send to [email protected]

  • Can not find some messages in Mail using search

    I have some problems with Mail.app I can not find some messages in Mail using search, the strange thing is that sometimes mail search finds some messages, but after rebuilding spotlight index the search displays other messages with the all messages searched using same search criteria. I have also tried to delete Envelope index file from the Mail folder in usr/library and forced mail to import all mailboxes but it started to crash importing some of mailboxes - I deleted the messages from that mailboxes, imported remaining mailboxes and tried to rebuild mailbox, but everything without a successes. Any ideas how to solve it?

    Hi lnaki vila
    I'm using pi 7.0 version
    i can see the other scenarios like SOAP to RFC, SOAP to IDOC,FILEto IDOC
    in sender side i'm not using any communication channel and adapter engine i'm just using http client tool for testing purpose
    i'm getting the response that's fine because its a synchronous communication
    i checked sxmb_adm in that -->integration configuration LOGGING parameter of category RUNTIME is set to  ENGINE_TYPE and current value is HUB(Integration server)
    thanks in advance
    regards
    Satish

  • Error!! Can not find the delivery details for the delivery Id :

    hi all,
    I have a report which i need to burst in seven different reports wherein my delivery key is column "emp_id". Now when i schedule the report to burst then the report completes with a warning. I see that there are various delivery cycles for the report and for one of the cycles i get the following message
    Error!! Can not find the delivery details for the delivery Id :
    hence, what happens due to this is, even there are successful deliveries for other delivery ids but then i get only two rows of data in each of the seven bursted ouput xls files. wheareas the data runs in thousands of rows for each cycle.
    Hence whats happening is, that due to error /warning in one of the delivery cycles other reports are also not showing data.
    I am not sure whats causing the issue and why i am not getting complete bursted files out.
    Please suggest
    Thanks
    Ronny

    I guess, you are in 10.1.3.3.2 :),
    in the latest release 10.1.3.4.1, there are more enhancement wrto bursting and performance i believe.
    check th release notes
    can you send me the xml and bursting query you have, i can try simulating in my local.

  • My iPad 2 does not find my Big Blue Live speaker! What do I do?

    My iPad 2 does not find my Big Blue Live speaker! What do I do?

    Make sure you're using an original apple ipad charger and plugging into a wall outlet to charge, not computer.
    Its possible that the charger is bad and may need replacing.
    Its also possible that the battery has gone bad and it may need replacing.
    Apple does offer battery replacement, you will have to send to them or take it to an apple store.
    http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipad
    Before you do that though, I would recommend reading through these links first for some more information on how your battery works, needs to be charged and maintained.
    Apple Batteries - iPad
    http://www.apple.com/batteries/ipad.html
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    iPhone, iPod, Using the iPad Charger
    http://support.apple.com/kb/HT4327

Maybe you are looking for

  • MobileMe gallery movie in iweb too small

    I posted my videoin my MobileMe gallery. I posted two sizes, iphone size and a HD size. I then use the MobileMe gallery widget to use that video in my website. I want the large size to show up in my website. Though it only allows me to resize to the

  • MCE05 and Mega 180

    Has anyone experienced the loss of buttons (display not function) on the media center program after about 5minutes of use.  If I access any of the features like My Music and play or delete files some of the files become blacked out but can still be u

  • How can I work lsmw with table control using mm01 appl?

    Hi How can I work lsmw with table control using mm01 appl? Is it difefrent the way we handle table control in BDC? Thank You

  • Decimal Places in Arabic Currency

    Hi, I have created an ADOBE FORM to display some currency values. Before display I am converting it to Arabic from within the program. When I do that the currency decimal notation is getting disturbed e.g. it is displayed like this ٢٥٬٠٠٠ If you see

  • How to supress the defaulted search option in catalogs

    Hello, This might be a long shot but I have the following situation: In a shopping cart a user picks a material from Catalog X , category Y. The next time  he opens the catalog X, directly the same category Y is diplayed in the search, in other words