DTP - Sending 1 datapackage manually

Dear All,
I have DTPed 50 data packages from PSA to ODS. But te 42nd data package is still yellow status. All the others are green. So the dtp is showing yellow status. Can I manually send this one datapackage? If so how?
I checked another thing. "Manually post" option is not active
Regards,
Ratish

To answer your specific question.  I have not heard of a way to send just 1 data package again.  As the previous poster mentions, your best bet is to delete that request (and any subsequent requests) And re-run your DTP.   If it continues to fail,  you can try smaller package size.   Unlikely but if you really wanted to be tricky you could try to get all of the data from that package into a flat file and build a flat file datasource that sends just that data again.  Although I wouldn't recommend it.
A couple things to note.
1) What specific step was the last one performed?   Was it when it was trying to assign SID's  (if you have SIDs turned on for the DSO).   If so, it could mean that you might need to increase your number buffer range.  Or you can turn off SIDs if you don't actually need them in the DSO
2) You can change the # of packages that run in parallel in the DTP menu. 
GoTo > Settings for Batch Management
You could try running only 1 at a time.

Similar Messages

  • Send Notifications Manually and show in OAF Page

    Hello,
    i need some suggestions on how to send Notification in EBS.
    System description: R12, Database 11g
    Scenario:
    We have the standard Notifications (Worflow List) Region showing in a OAF Page.
    I want to send manually Notifications, so see these in the Notification Worklist.
    What standard methods are existing to handle this approach?
    Thank you very much!

    Hi,
    You have to start (trigger) the for workflow by calling an PL/SQL block when an event is raised from a OAF page.
    To set the OAF region on to the notification use a Document type attribute in the workflow and set the path
    like JSP:/OA_HTML/OA.jsp?OAFunc=<Registered Function Name>&Parameter1=<value>
    Hope this would help.
    Regards,
    achapla

  • Need to push failed datapackage manually

    Hi ,
       While dataloading in infopackage , last datapackage contain 10k records got failed.. is it possible to push it manually that failed datapackage alone.Please help me on this.Else it will take 10 hours to redo the activiy
    Regrds,
    MohammeD

    Hi,
    As you told you have issue with last data packet, first check with what error it got failed.
    check the job log in SM37 and check the error. It depends on error whether we can update manually or not.
    Lets take an example your data package failed with error in data records, then you can follow the below procedure.
    Note: to do the below one you should have selected with PSA option.
    1)  make the request red and delete the request from target.
    2) Now goto PSA and edit the error records and save it.
    3) Now come back to RSA1.
    4) search for your data source and right click select "manage"
    5) you will have latest request request which is not updated to the target.
    6) Select the request then click on update, it will be loaded to the target.
    Note: If you don't have PSA, i mean in IP if you have not selected the option " PSA and then data target ". In this case no other way, you have to run the load again.
    Regards,
    Venkatesh.

  • Setting Mail sender name manually

    hi
    I am using 'SO_NEW_DOCUMENT_SEND_API1' function module to send mails. This function module takes the current user name as the  mail sender name and sender mail ID.
    Is there any way to set the mail sender name or sender mail id manually.
    Thanks in advance,
    Padmini

    Hi.
    First populate the Receiver ID's.
    eMail Id of the Selected Employee
      IF not P_RECV is initial.   
        reclist-receiver = p_recv.
        reclist-rec_type = 'U'.
        APPEND reclist.
        CLEAR  reclist.
      endif.                      
    Individual Email ID's
      LOOP AT s_mail.
        reclist-receiver = s_mail-low .
        reclist-rec_type = 'U'.
        APPEND reclist.
        CLEAR  reclist.
      ENDLOOP.
      sort reclist by receiver.
      delete adjacent duplicates from reclist comparing receiver.
    Then use the FM you have used.
    data: lv_pernr type pa0105-pernr.
      DATA: v_send_address LIKE soextreci1-receiver. "Sender add
      DATA: lv_reclist like reclist occurs 0 with header line.
            lv_reclist[] = reclist[].
    Get Email of Current User {
      select pernr from pa0105
       into lv_pernr
       where subty = '0001'
         and usrid = sy-uname
         and endda ge sy-datum
         and begda le sy-datum.
      endselect.
      if sy-subrc = 0.
        select usrid_long from pa0105
         into v_send_address
         where pernr = lv_pernr
           and subty = '0010'
           and endda ge sy-datum
           and begda le sy-datum.
        endselect.
      endif.
    } Get Email of Current User
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data                   = doc_chng
          put_in_outbox                   = 'X'
          sender_address                  = v_send_address
          sender_address_type             = 'SMTP'
        TABLES
          packing_list  = objpack
          object_header = objhead
          contents_bin  = objbin
          contents_txt  = obj_head
        CONTENTS_HEX                     =
        OBJECT_PARA                      =
        OBJECT_PARB                      =
          receivers                        = reclist
        EXCEPTIONS
          too_many_receivers               = 1
          document_not_sent                = 2
          document_type_not_exist          = 3
          operation_no_authorization       = 4
          parameter_error                  = 5
          x_error                          = 6
          enqueue_error                    = 7
          OTHERS                           = 8.
      IF sy-subrc <> 0.
        MESSAGE i000(zz) WITH 'Error while sending the e-Mail'(023).
        Leave to screen 1000.
      ELSE.
        MESSAGE s000(zz) WITH 'e-Mail sent successfully'(024).
      ENDIF.
      reclist[] = lv_reclist[].
      refresh: lv_Reclist.
    Guess this should work.
    Thanks and regards,
    Maheshwari.V

  • Sending mails manually using Tcode SOST

    Hi Experts
    I am using Zprogram to send  email to receivers in which i have used  FM 'SO_NEW_DOCUMENT_SEND_API1'  . Now the new requirement is to stop the mails sending automatically.
    is it possible to adjust the program in a way that when executing the programme , the mailing is only prepared and eMail will only be sent via the TCode  SOST?
    Regards
    Raveendra

    Hello,
    I don't think there's any good way to do this.
    If you want to hold all emails from certain users you could try using CDG routing (note 311633) to assign their emails to a node that you leave turned off until you've checked the queue... But that only works if you want to stop all mail from that sender.
    Or you could change to using a MAIL printer (device type M) and uncheck the print immediately so the email shows up in their print spool and needs to be triggered before being sent.
    Regards,
    Michael

  • HOW CAN I SEND THIS MANUAL TO A FOLDER AS A FILE ON MY COMPUTER?

    HOW DO I SEND THIS FOLDER TO FILE ON MY COMPUTER?

    Hi, you have a lot of questions! Here are some articles that should help - [[Create bookmarks to save your favorite webpages]]. And - [[Profiles - Where Firefox stores your bookmarks, passwords and other user data]]. And - [[Learn more about the design of the new Firefox]].
    To export/import bookmarks: Open bookmarks > Show All Bookmarks > Import and Backup.
    You can bring up the Main menu bar temporarily by pressing Alt, or right click in the tab bar (but not on a tab) and tick/check Menu Bar if you want it to be there all the time.
    The help button is at the bottom of the 3-bar menu (question mark).
    Hope that helps!

  • Automatic font size/type change after sending - why and how do I fix it?

    This only seems to happen when I copy text from a web page and paste it into a compsosing email within Mail but it does not display on screen as anything different until the email is sent.
    Here is an excerted screenshot from an email that was sent. When I composed it there appeared to be normality but after sending it changed.
    A little more background on when this seems to happen. My french is not good. I use dictionary.com to translate text then copy and paste it to the email. I am not sure if this is the only circumstance of when this debacle happens but it seems to be constant when I follow the previous steps. Note: If I am not troubleshooting when it happens and I highlight all text (even though it looks normal) before sending then manually change the font size or font type and revert back to the size type then it does not always happen but still will periodically.
    Any ideas on how to fix this problem? Is it a known bug or virus?

    This is not a virus.
    It's important to keep in mind that Mail sends HTML e-mail, when the text needs to be "styled" in any way, rather than just plain text, and not all mail clients will display that in the same way (or even at all). Also, Mail doesn't really have much in the way of editing capabilities for HTML e-mail.
    Fortunately, from what you describe, there's a solution... if text you are copying from somewhere and pasting into Mail has strange formatting, try command-option-shift-v, or Edit -> Paste and Match Style, to paste the text. This discards all the style information attached to the copied text, and pastes just the text itself, making the text match the style of whatever you're pasting it into.

  • Outlook: "Send Immediately when connected" not working for Word 2010

    When i disable the option in Outlook "Send Immediately when connected" the messages are placed in the Outbox until i send them manually.
    But when i want to send a Word 2010 document from within Word 2010 by E-Mail the message is send immediately.
    Is it possible to place the message/document in the Outbox just like with Outlook?
    Thnx in advance.

    Hi,
    I cannot reproduce this problem in my environment. When I send a Word document by clicking File > Save & Send > Send as Attachment, it just go to the Outbox like the common message.
    Does this issue happen to all Word documents at any time?
    What's the send/receive interval you set in your Outlook? It could still occur that your message will be sent near instantly when you send a message right before the automatic send/receive interval takes place.
    For more information, please refer:
    http://www.msoutlook.info/question/181
    Regards,
    Steve Fan
    TechNet Community Support

  • Error in Sending email :SO_NEW_DOCUMENT_SEND_API1

    Hiiiii Every1,
    I m sending e-mail in Html format using the above mentioned FM.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
        EXPORTING
          commit_work                = 'X'
          document_type              = 'HTM'
          document_data              = doc_chng
          put_in_outbox              = 'X'
        TABLES
          object_header              = objcont
          object_content             = objcont
          receivers                  = reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
    and sending it automatically using
        SUBMIT rsconn01
        WITH mode EQ 'INT'
        AND RETURN.
    What the error is that when i send e-mail what i have to check is that weather the the E-mail is sent from SOST or Not..If the Status of that e-mail is Delivered then i have to set a flag for sucess.
    Else..Error Message.
    How i can check weather is mail is delivered to recipent or Not even if SMTP is creating problem or due to any reason mail is not sent. I have to check.
    Plz do reply as soon as Possible.
    Thanks & Regards
    Sachin Dhingra

    Hallo,
    I think I understand what you mean. You need the end status of the document after the send process has finshed.
    Please try the following way:
    After calling
    SO_NEW_DOCUMENT_SEND_API1
    check the Export parameter:
    NEW_OBJECT_ID
    It will cointain the new object ID wich is created.
    After submiting the send process manually (usually this is not recommended...) the status of the document is updated in the DB Table:
    'SOST'.
    In this you can look for the object by:
    OBJTP        
    OBJYR        
    OBJNO  
    (This can be found in the NEW_OBJECT_ID ).
    The fileds:
    MSGID
    MSGTY
    MSGNO
    of the table
    SOST
    will contain the information you requiere.
    I hope this helps you.
    Regards.

  • Outlook 2013 send & receive is very slow or freezes

    Hello. I recently purchased Office 2013 to install on my new laptop at the beginning of February. Everything was working fine up until a couple weeks ago. I am having issues in Outlook 2013, specifically I am not getting emails or when I send
    emails they show as being sent but the customer never receives them. I have 2 email accounts setup and both are scheduled to automatically send and receive every 1 minute but even if I hit send & receive manually nothing works. Eventually the send/receive
    window will open and freeze, showing "processing" or that there are 60 minutes left in trying to receive a message! I have never had an issue like this before and I need it to be fixed so I can continue to communicate with my customers! Please help!

    Does it throw any error code? Make sure the internet/network doesn't have any issues? Check whether the same mailboxes can be accessed in their webmail interfaces (say, OWA) and see you don't face any send/receive issues with that?
    Do check whether you can repro the issue by opening Outlook in safe mode or not (Outlook.exe /safe)? If issue is not reproduced, then I would suspect one of the Outlook add-in may be causing this above issue.
    You can check the send/receive groups. For more info, you can refer:
    http://office.microsoft.com/en-us/outlook-help/why-use-send-receive-groups-HA102749372.aspx
    Let me know how it goes.
    DeVa, M.S., {MSFT} Please remember to mark the replies as answers if they help

  • Macro for automatically sending E-mail from a folder

    I have a folder containing purchase orders (in pdf format) for many companies (say 500 companies), which I should send them manually to all the companies twice a month.
    (by insert the Purchase order and selecting the E-mail address and send separately to all of them)
    Is there any way to automate this work?

    Hi,
    Since we are not the best source for coding, if you are looking for some coding assistance, I'd recommend you to post your question to the Outlook for Developers forum:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    In addition, you can also find some add-ins to achieve the goal. For more information, please refer to the article below:
    Send files and report updates automatically
    http://www.msoutlook.info/question/236
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft
    does not guarantee the accuracy of this information.
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • Error when sending message: 404 not found

    Hi,
    New to XI, practicing file to jdbc scenario. File is pickedup from the source folder but nothing appearing on the receiver end ms access database.
    In the Component Monitoring, tried sending message manually with all the right info in Integration engine, getting an error message saying:
    "Error when sending message : 404 not found"
    Also tried in Adapter Engine and the result same.
    Before doing this scenario, I tried file - file scenario then also the sender file pickedup from source folder but nothing happend at the receiver end.
    Any idea's?? what might be the issue????
    Thanks,
    Venu.

    Hi Venu,
    "404 is a not found error", plz make a check of  your URL you're using is correct? do you use the right port? Normally the port is 80<SystemNo>, so rather 8001 than 7001.
    Also check in transaction SICF, if the node /sap/xi/adapter_plain has been activated, if not, activate it and try again.
    If you are testing sending the message to the Adapter Engine, then the Send Message URL should be like this:
    http://<server>:<J2EEport>/MessagingSystem/receive/AFW/XI
    For your error, refer to the following threads:
    Unable to find an associated SLD element
    Unable to refresh cache contents in XI.
    Unable to find an associated SLD element
    Also check that the Adapter Engine is successfully registered in the SLD. To do this, call the Content Maintenance function in the SLD as follows:
    http://<sld-host>:<sld-j2ee-port>/sld u2192 Administration u2192 Content Maintenance.
    Select XI Adapter Framework.
    Thirteen associations have to be registered.
    (Source: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2498bf90-0201-0010-4884-83568752a857)
    If you can't find all the associations, then you will have to create the associations manually.
    This is a very good blog which answers ur question:
    check this weblog
    https://weblogs.sdn.sap.com/pub/wlg/4061?page=last&x-showcontent=off [original link is broken] [original link is broken] [original link is broken]
    Regards,
    Vinod.

  • How to update request of write-optimised ODS to other ODS or Cube by DTP?

    Hi,gurus here.
    I've tried to update write-optimized ODS request to another ODS by DTP in both full and delta mode, bit it's futile.
    So is that possible? how to do?
    Thanks.

    Hi..
    Please check the below things.
    1. Is the request 'Green" in Write-Optimized DSO?
    2. Does your target DSO already contains the request? Write-Opt DTP sends Delta based on request , so if one request has been loaded once to target, next time it will not be loaded with Delta DTP.
    3. Is there any filter settings in DTP? Suppose you have a Filter on CALYEAR 2008 but in your W-O DSO you do not have any data for 2008.
    If the above does not solve your problem , please paste the DTP monitor log .
    Regards
    Anindya

  • Cannot send report directly to printer

    Hi,
    we are installing new canon printers (irc2380's) and we are having difficulty getting the reports to the printer.
    If i send the output of the report as a file to the application server(solaris) and then print using an lp command then the report prints fine, however if we try to send the output directly to the printer, the report server thinks it has been successfull but nothing appears on the printer.
    We are using run_report_object, have tried looking at the ppd files but cannot get any to work, canon do not seem to have any specific for unix.
    Any help would be appreciated.
    Thanks

    Hello,
    If the Reports Version is >= 9.0.2 , an output file has been generated in the Reports Server cache ($ORACLE_HOME/reports/cache by default)
    and this file is sent to the printer with the script rwlpr.sh (in $ORACLE_HOME/bin)
    Check the content of the file generated in the Reports cache, test to send it "manually' to the printer
    Regards

  • Problem BW  : DTP lost source system mapping  and new one created?

    I had a little question concerning the BI content activation, when you have to activate objects and there are two source systems, one of them already with a flow working. Do you have to check both source systems in your screen of source system selection, if there are shared objects? I was afraid if I only checked the one I wanted the existing one would dissappear? I donu2019t want to touch the existing one as it was a 3.5 flow which has been migrated to 7.0.
    I have also another question, which is a worse scenario of what has happened recentlyu2026!! Imagine you have originally one source system in your BW DEV environment (towards QA) with a certain amount of Datasources connected to it as well as some DTPu2019s. A new source system was added to this BW DEV (towards PROD). Do you think adding this new source system could have an impact in the mapping of the DTP towards the Datasources? In fact, some of our DTP have been modified and they are pointing to the incorrect Datasource/Source system. These DTP were created manually as well as the Transformations as it was a former 3.5 flow. Do you know a way to bring it back to itu2019s previous connection. Maybe a table that points to the correct source system or a function module? RSBKDTP and RSBK* tables do not store this info (only descriptions) and RSRV doesnu2019t do it.
    Please let me know if you have had a similar case! Points are waiting and the gratitude of my boss...lol

    Any ideas?

Maybe you are looking for

  • Enterprise manager not installed.

    Hello everybody I have installed the SOA 11.1.1.2 suite as per the documentation. But when i am starting teh weblogic server,during startup it throws error regarding enterprise manager. stacktrace is like this <Jan 8, 2010 12:00:40 AM GMT+05:30> <War

  • All RAM not showing up

    I just installed new RAM, and it's not all showing up in the system profiler. Before the upgrade I had: Riser A - 1GB - 0 - 0 - 0 Riser B - 1GB - 0 - 0 - 0 After the upgrade I had: Riser A - 4GB - 4GB - 0 - 0 Riser B - 1GB - 1GB - 0 - 0 But the syste

  • Power Mac G5 Tower starts up, but no display...

    I've got a PowerMac G5 tower that powers up, I hear the fans ramping up, but no display > black screen. I've tried 2 different monitors...same thing. What could this be? PRAM? Thanks for any expertise, Sunny

  • How to achieve this in SQL?

    Hi Guys, I'm stuck in one place. Here is my problem explained below - Table definition is - Column name          Data Type          Nullable FLT_NBR           CHAR(5 BYTE)     No CARR_IATA_CD     CHAR(4 BYTE)     No FLT_LCL_ORIG_DT     DATE          

  • How put temp files of FireFox Developer Edition on my RamDisk?

    Tengo un SSD y para protegerlo de las continuas escrituras quiero colocar los archivos temporales del Firefox Developer Edition en mi Ramdisk. ¿Es correcto hacer esto? ¿tienen algún consejo para darme? Muchas Gracias - Jorge I have a SSD and to prote