Tell me which approach is gud in posting documents in contenserver frm sap.

Hi Guru's,
as i have some requirement like documents from sap r/3 to be sent to the contentserver(3party).
and the documents to be come into the sap from content server using work flow.
as far as i know can i go with sap out going documents and incoming documents under archive link for this requirement?
is there any other approach to access the documents to and fro from sap to external content server using workflow?
Thanks&Regards,
babu.

Hi,
You can Acheive through [IDoc|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0cc5049-5837-2b10-8ca5-f0e948762522] Configuration or Via [XI|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b2b4035c-0d01-0010-31b5-c470d3236afd].
Regards,
Surjith

Similar Messages

  • Please tel me which one is good approach of joining.

    Dear all, 
    Table_2 has following data
    c             na
    7.000 k
    3.000 j
    32.000 g
    Table_1 has following data
    c             na
    1.000 l
    2.000 m
    34.000 h
    na is primary key for both tables.
    i want only h and g should come in one row
    select * from [Table_2] a CROSS JOIN table_1 b 
    where a.na='g' and b.na='h'
    and a.c> b.c
    select * from [Table_2] a inner JOIN table_1 b 
    on a.na='g' and b.na='h'
    and a.c> b.c
    select * from [Table_2] a , table_1 b 
    where a.na='g' and b.na='h'
    and a.c> b.c
    please tel me which one i should follow,
    as i can see  na is primary key so there can be other better methods also
    please suggest.
    yours sincerly

    All ways lead to Rome, they say, but I certainly prefer the solution with CROSS JOIN.
    The solution with INNER JOIN could make sense depending on the business rules, but in such case I would write it as:
    SELECT *
    FROM   [Table_2] a
    JOIN   table_1 b ON a.c> b.c
    WHERE  a.na='g'
      AND  b.na='h'
    Or even:
    SELECT *
    FROM   (SELECT * FROM Table_2 WHERE na = 'g') AS a
    JOIN   (SELECT * FROM Table_1 WHERE na = 'h') AS b ON a.c > b.c
    I don't want the filtering on the individual columns in the ON clause for the JOIN. But admittedly, I rarely write queries in this style. Basically, I only do it if I do a full outer join (because else the query easily goes out of hand.)
    The last version with a comma is very similar to the CROSS JOIN solution. However, while comma can be seen as a CROSS JOIN operator, it has a different precedence, which can result in unexpected compilation errors if you more JOIN operators to the query.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Can anyone please tell me which version of Photoshop Elements will download easily and run with mac 10.5.8 Snow Leopard?

    I posted a question which was: Can anyone please tell me which version of Photoshop Elements will work with Mac 10.6.8 Snow Leopard.  Then this window popped up saying mark this discussion with as a question and this window.  I have no idea how this works. It already is a question and if I need to emphasize that, how does this window that looks like a Word editing window, help me do that?Downloading, Installing, Setting Up

    You asked the question in the title area instead of the area where the body of your posting is intended to be.  No fault of yours - they need to make the form clearer.
    Check the system requirements for the various versions of Photoshop Elements and see which suits your system.  Adobe only sells the most recent versions of their software, so if you need an older version you will need to find a vendor for it.
    System requirements | Adobe Photoshop Elements

  • Under which group i have to post issues related to SAP - Basis

    Hello All,
    Can some one tell me
    Under which group i have to post issues related to SAP - Basis
    Thanks
    Balaji

    Hi,
    As such there is forum which is dedicated to basis. But there are number of forum where you can post issues depending upon what type of issue you have e.g.
    If you have issue related to database then you can post in SAP on Oracle, SAP on DB6, SAP on MaxDB etc.
    If it is related to OS then SAP on Unix, SAP on window etc.
    If it is related to ERP/EHP upgrade then SAP ERP 6.0 upgrade, Enhancement Package installation.
    If its related to netweaver then on SAP Netweaver administrator, SAP netweaver platform.
    Thanks
    Sunny

  • I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.

    I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.

    I am trying to open some *.avi files in quicktime, they are from my security camera at home.  It will not open them, would anyone be able to help me?  It says I need a plugin but it does not tell me which one.
    Basically your player is telling you that you need to install the codecs that will play the compressed data within the AVI file.
    AVI is a legacy file container in which the tracks of data are interleaved to maintain synchronization. This data can be encoded using many different audio and video codecs. Your problem is to determine which codecs you need for the player you are trying to use and install them if they are available. Failing that, your will either have to play the files in a different player which has the codec support your require built into the app or convert the content to a compression format that is natively compatible with the player you wish to use.
    Since you have not stated what platform, operating system, and particular player you are targeting for playback, it is difficult to provide precise instructions for fixing your specific problem at this point. Suggest you try alternative players compatible with your system and platform to see if they will play the files, use a dedicated media information utility to determine the codecs needed for playback, or post a sample file for analysis.

  • Which approach is good?

    I don;t know if I am posting this on the right forum. So Please....
    The question is with respect to logging.
    I know using the log4j , we can configure/direct the logs based on the package names.
    Now I have one package and in the same package, In every class, I have to normal log and also do audit log. And now the audit log should go to db.
    Now I have three proposals, I want you to tell me which one is better and why
    Case 1)
    Create a class called AdminLogger and have a static method "log" which would do log the message to the DB.
    Q) If I use static method, I believe I need to put synchronized key word to the "log" method ?. Because, it might be called from different places. And more over there is a possibility that several users may be invoking the objects.
    case 2)
    Create a class called AdminLogger with no public constructor and have a method called getLogger which would return a new instance every time and call log method on the instance
    Q) Pretty much it creates a new instance of AdminLogger for every log.
    case 3) Have one static instance for each class like
    public static AuditLogger logger = new AuditLogger();
    Q) This would create n instances for n classes. and they will be in memory all the time.
    thanks

    Log4j is thread safety you do not have to synchronize your static methods.
    Regards,
    Sławomir Wojtasiak

  • TS1307 I am using mail for emails. It receives fine but it will not send. I am using an o2 account (smtp.o2.co.uk). Is o2 incompatible with mail? if so can you tell me which email application I can use instead? Many thanks Steve

    I am using mail for emails. It receives fine but it will not send. I am using an o2 account (smtp.o2.co.uk). Is o2 incompatible with mail? if so can you tell me which email application I can use instead? Many thanks Steve

    Whilst it may not be your fault I am afraid it appears that your post is on a forum which is not the best for your OS. It will save the time of the unpaid volunteers here, and may resolve your issue faster, if you could examine the list below and see if there is a more appropriate forum to which you could direct your question.
    OS X 10.9 Mavericks
    OS X 10.8 Mountain Lion
    OS X 10.7 Lion
    OS X 10.6 Snow Leopard
    OS X 10.5 Leopard
    OS X 10.4 Tiger
    OS X 10.3 and earlier
    OS 9, OS 8 & System 7
    OS X Technologies
    OS X Server
    iPad
    iPhone
    iPod
    Other

  • Please tell me which Ipod dock adapter is compatible with the Ipod Classic 80GB?  They no longer make this particular Ipod and I need the right dock adapter for my Panasonic SC-HC25 stereo system I recently purchased.

    Please tell me which Ipod dock adapter is compatible with the Ipod Classic 80GB?  They no longer make this particular Ipod and I need the right dock adapter for my Panasonic SC-HC25 stereo system with universal dock for Ipod/Iphone I recently purchased.
    You can also send my answer to [email protected]
    Thanks in advance for all who will help.
    slovebk

    refer to this Apple support Article, on Universal Dock which retail at $59 at Apple store.
    http://support.apple.com/kb/HT1380
    Look through the compatible list chart and see which 80GB model are you using, either ID 9 or 10. you can order through Apple Online Store.
    Have a nice day!

  • My iPhone 4S has stuck some how. It won't allow me yo swipe but tells me which button I am pressing! How do I get out of this, tried the usual, on off and holding both to reset but still stuck

    My iPhone 4S has stuck and won't allow me to swipe it open! It talks to me and tells me which button I'm pressing, tried to reset ect but not working,

    Sounds like you've switched on something under accessibility, I have an iPhone 5s & there it's under settings>General>accessibility.
    To swipe you could try using two fingers.
    Hth,
    Message was edited by: Doctor9fan

  • I have to upload video from my hewlett packard t200 camcorder to my mac. but mac won't recognize the camcorder files. i even bought flip4mac by tele stream which so far is useless. please help me use my camcorder with my iMac os mountain lion 10.8.2

    i have to upload video from my hewlett packard t200 camcorder to my mac. but mac won't recognize the camcorder files. i even bought flip4mac by tele stream which so far is useless. please help me use my camcorder with my iMac os mountain lion 10.8.2
    i tried to get the installation disc for the camcorder but mac wont' recognize it becaue it is windows based i guess.
    i just bought the camcorder a few months ago and when my computer crashed thought i'm finally getting a mac...it's been a costly venture which has resulted in more frustration than before my pc.
    now the things i want to use with my mac that i thought would be even simpler...are not even useable...
    help

    That camera shoots H.264 in an .avi wrapper.
    You will have to transfer the files via the Finder.
    Get a free copy of MPEG Streamclip and convert them to QuickTime .mov using the H.264 codec if you are presumably editing in iMovie.
    Note that your list of video codecs won't look like mine as I have Final Cut Pro, but H.264 is definitely an option for you.

  • How do I tell iCal which email address to use in Address Book?

    iCal's help files on how to set an email alarm for iCal are clear as mud to me. If I click on alarm in Info of an event, select email as type of alarm, then a popup says must add card with name and own email in Address Book. Fine, click on Open Address Book. Well, then what? I already have more than one card in there with an email address for me. Even if I select one, nothing happens. So how do I make the connection? How can I tell iCal which card to use? I see nothing in Address Book menus or help files.

    Hi Guys,
    Been dealing with a similar issue for about 3 years now, so I know your pain. Apple will not solve this problem because they're a stickler for standards, no matter what the rest of the world really needs. Since I'm a developer at heart, I decided to tackle the problem on my own and built a software product called Zamain for Mac to support sending Apple iCal invitations from multiple Apple Mail email accounts. It also resolves common Apple iCal to Microsoft Outlook/Exchange problems. I originally built the product for myself, but soon realized that this can help others as well.
    Although I know that this is a shameless plug for my product, I urge you to give it a try because it will really make your life easier. I have been using it every day for past 6 months and I can tell you that it saved me a lot of grief.
    You can get Zamain for Mac at www.zamain.com.
    Thanks!
    -Jon
    As per the terms of agreement, I must disclose that I may receive some form of compensation, financial or otherwise, from my recommendation or link above.

  • Display items which doesn't  have any posting data in report painter

    I made some reports by report painter. The problem is that when I run these reports, they can't display the items which doesn't have any posting data. But my customers want to display all items whatever it has been posted or not , can you give me the solution?
    BTW, when I made Reports by using Drilldown report, it  display all items
    Thanks and best regards!

    In the change report screen in GRR2 go to menu
    Formating--> report layout
    There in the rows tab select the radio button, Print Zero rows
    and in the columns tab select Print Zero columns radio button,
    hope this should solve the problem
    Thanks
    Naveen

  • Plz tell me which sound file format uses minimum memory of a director file

    plz tell me which sound file format uses minimum memory of a director file. bcoz on adding sound the projector file becomes a large memory file .
    so i am confused that which file format should be used.

    saramultimedia,
    Are you certain that you're asking your question in the right place? This forum is about the Adobe Media Encoder application. Most of the people who answer questions here are familiar with the digital video and audio applications such as After Effects and Premiere Pro.
    If you have a question about Director, it's probably best to ask on the Director forum. But I see that you already know that, since you already have a thread on that forum to ask this question, and it got an answer:
    http://forums.adobe.com/thread/769569

  • Please tell me, which is better either BASE64 or Quoted-Printable.

    Hello all.
    Does anyone tell me, Which is better on MIME either BASE64 or Quoted-Printable?
    I'm not so familiar with MIME.
    Any Opinion will be appreciated.
    Thanks.
    p.s.
    excuse me for my english.

    BASE64 is better for encoding a binary file, such as gifs, etc...
    Quoted-printable is better for ASCII files with some extra chars, such as newlines, =, $, etc..., this algorithm encode only that chars, leaving all other chars unchanged..
    look at http://pages.prodigy.net/michael_santovec/decode.htm for further information

  • Hello! Could you tell me which configuration is the best for graphic works, like making large POSTERS or BANNERS (for instance 2800X500 cm)???

    Hello! Could you tell me which configuration is the best for graphic works, like making large POSTERS or BANNERS (for instance 2800X500 cm)???

    scorpiorey wrote:
    I just create file and send it to printer-house.
    Never done that size files (posters) before, so, didn't know it would be such problem.
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro8,1
      Processor Name:          Intel Core i7
      Processor Speed:          2.8 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache (per Core):          256 KB
      L3 Cache:          4 MB
      Memory:          4 GB
      Boot ROM Version:          MBP81.0047.B24
      SMC Version (system):          1.68f98
    this is what i have. now i know that it's not enough
    If that's what you're using and it actually works, albeit slowly, I'd suggest taking The hatter's advice and go with the 6 core Mac Pro with  24GB of RAM and the 5870 video card. The RAM could come from here: http://eshop.macsales.com/shop/memory/Mac-Pro-Memory#1333-memory

Maybe you are looking for