How to use tags in workflows to identify mediaType ?

Hi,
I have installed sl server on vmware and podcastproducer works great on it. I begun to explore workflows and podcastcomposer.
This is my first feedback :
With 10.5, for example I use on blog server : http://myserver/groups/blog/index.rss?mediaTypeTag=ipod&howMany=500&tag=itunes to return feed with only ipod (m4v) media. In this way mediaTypeTag parameter lets me filter feed enclosures.
With 10.6 I didn't arrive to make the same thing. I tried to add tags in publish step in podcastcomposer, but tags apply on all exports. I try to edit template.plist of workflow to add different tag on each export but it doesn't work. It seems to work only if tags are the same on each export.
So I tried to use wiki publishing to make it work, but it seems to be impossible to publish to wiki and in the same way apply a wiki tag to the post.
So neither with export, neither with publish parameter in a workflow I can distinguish media exin the feed. That's a big lack for me.
Another thing. The lack of Blog server in 10.5 is posts editing. But it seems to be the same thing in SL. It is impossible to edit post date or author name in the wiki or in podcast library. Second thing how could I delete entries in podcastlibrary.
Thanks for your help.
Chris

Hi,
I have installed sl server on vmware and podcastproducer works great on it. I begun to explore workflows and podcastcomposer.
This is my first feedback :
With 10.5, for example I use on blog server : http://myserver/groups/blog/index.rss?mediaTypeTag=ipod&howMany=500&tag=itunes to return feed with only ipod (m4v) media. In this way mediaTypeTag parameter lets me filter feed enclosures.
With 10.6 I didn't arrive to make the same thing. I tried to add tags in publish step in podcastcomposer, but tags apply on all exports. I try to edit template.plist of workflow to add different tag on each export but it doesn't work. It seems to work only if tags are the same on each export.
So I tried to use wiki publishing to make it work, but it seems to be impossible to publish to wiki and in the same way apply a wiki tag to the post.
So neither with export, neither with publish parameter in a workflow I can distinguish media exin the feed. That's a big lack for me.
Another thing. The lack of Blog server in 10.5 is posts editing. But it seems to be the same thing in SL. It is impossible to edit post date or author name in the wiki or in podcast library. Second thing how could I delete entries in podcastlibrary.
Thanks for your help.
Chris

Similar Messages

  • How to use tokens in workflows(ocm)

    i want to know how to use tokens in workflows .

    What do you want to know?
    Tokens are variables that eventually map to either individual user names or aliases (groups of users).
    The token is defined and then included in the workflow step in addition to or in place of a user or alias.
    A token is a piece of idoc script that ends like this <$wfAddUser("Name", "type")$>. Name, like i mentioned above, is a user name or an alias name. Type is a string identifier; either "user" or "alias".
    Because it's Idoc Script, the token can evaluate anything available in the databinder as well as execute other functions.
    A very easy way of using tokens is to map a metadata field that you know will contain a user name to the "Name" parameter. The dDocAuthor field will always contain a user name. So the token might look like this: <$wfAddUser(dDocAuthor, "user")$>. When set as a workflow user, this token will route the item to the person listed as the author.
    Because tokens are evaluated in workflow after the entry event (read the docco if you don't know what step events are), you can do some complex caluclations in the entry event and then pull the results into the token. For example, you might want to auto-escalate workflow content to my manger. If we presume that my manager's user name is part of my user profile, (say in a user metadata field called uManager), we can figure out who my manager is in the entry event, set my managers name into the companion file (read the docco if you don't know what this is), then pull it out in the token when the token is evaluated.
    this might look something like:
    --- ENTRY EVENT CODE ---
    <$me=dUser$> <!-- this sets the current user to the idoc variable "me"-->
    <$myManager=getValueForSpecifiedUser(me,'uManager')$> <!--this grabs the value of the uManager field for me-->
    <$wfSet("manager", myManager)$><!--this creates a variable in the companion file called "manager" and sets its value to the value of the myManager variable-->
    ----Token Code---
    <$wfAddUser(wfGet("manager"),"user")$> <!--this pulls the value of the "manager" variable out of the companion file and sets it as the token user.-->
    This is only the tip of the iceberg. One token can have multiple <$wfAddUser...$> declarations. They can be conditional: <$if ..some condition$><$wfAddUser...$><$else$><$wfAddUser...$><$endif$>
    Check out the workflow reference guide that is in the documentation library for more ideas.

  • How to use tag?

    Hey,
    I was working on some examples and I saw one example had used "tag" when creating a table.
    I'm just wondering why and when do you use tag?
    what is is for?

    For an example of how to use tags with (iPhone) table views, take a look at the code in my reply to [How to edit label in custom UITableViewCell?|http://discussions.apple.com/thread.jspa?messageID=11498619&#1 1498619].
    In that example two labels are added to each new cell when it's created in the tableView:cellForRowAtIndexPath: data source method. The OP wants to change the text in one of those labels when its cell is selected by the user, and the code to do that is in the tableView:didSelectRowAtIndexPath: delegate method.
    But how does the delegate code get the address of either label, and how does it tell one label from the other? This problem is solved by using the 'tag' property of each label. Note that the code which creates the labels includes statements to set each of the tags. The left label tag is set to 1, and the right label tag is set to 2. The delegate method then sends the [viewWithTag:|http://developer.apple.com/iphone/library/documentation/UIKit/Ref erence/UIViewClass/UIView/UIView.html#//appleref/doc/uid/TP40006816-CH3-SW26] message to the selected cell. When the integer '1' is passed as the argument, the viewWithTag: method returns the address of the first subview it finds with a tag value of '1'.
    Hope that helps!
    \- Ray
    p.s.: In previous threads my poor vision saw a lower case 'L' in your alias instead of the second 'i'. When I correct that mistake your alias looks more like a form of David. Sorry for the past mistakes. - R

  • How to use alert in workflow

    Hi friends
      I have configured ALERT in ALRCATDEF t-code. and i have wirtten the discription of the alert there. Now i am using deadline in my workflow in the mail step i want to use this alert so that this alert will come in alert tab in portal. In ALRCATDEF t-code there is fixed recipitants but i want to get the recipitants dynamically which i have written the logic in my workflow but how to use this in workflow. Can any one guide me.
    Regards
    vijay

    Hi,
    We had a similar requirement to send a notification from the alert.
    We created the alert and called the conccurent program which will trigger the workflow.
    Below are the stepsfor the same:
    Create the event/periodic alert and give the action type as "Concurrent Program".and give the concurrent program detials as below
    Application :Human Resources
    Program Name :XX(Eg:Alert Workflow Initiation CP) (this is a plsql stored procedure type with six parameters for this program )
    Arguments:YYY(eg:"N" &person_id "&name" "&job" "&org" "&username")
    Below is the sample code to call the workflow from plsql stored procedure
    begin
    l_item_key := to_char(SYSDATE,'YYMMDDHH24MISS');
    wf_engine.CreateProcess
    (itemtype => 'IRC_WF',
    itemkey => l_item_key,
    process => 'PER_APPLICATION_PRC'
    l_mail_content := chr(10)||chr(10)||'Dear '||p_name||':'||chr(10)||chr(10)||
    'We appreciate your interest in the '||l_job||' position. A member of the Human Resources team will review your information and contact you if your skills and experience is a match for our needs at this time.'||chr(10)||chr(10)||
    'Once again, thank you for your interest in employment at XXX.'||chr(10)||chr(10)||
    'Sincerely,'||chr(10)||
    'XXX';
    wf_engine.SetItemAttrText(itemtype => 'IRC_WF',
    itemkey => l_item_key,
    aname => 'WWPER_MESG_HTML',
    avalue => l_mail_content);
    wf_engine.StartProcess
    (itemtype => 'IRC_WF',
    itemkey => l_item_key);
    COMMIT;
    end;
    Get back to me if you need further details
    Thanks,
    Anuradha
    Edited by: user10411683 on Dec 2, 2008 11:12 PM

  • How to use rule in workflow

    Hi all.
         I am new to workflow. Can you pls let me know how to use the rule in worklow .I have created a rule using the transaction PFAC. Pls provide  me some screen shots which demonstrates   hoe to use  this rule in workflow.Thanks in advance.
    Cheers,
    sami.

    Hi SAMI
    go to this pdf in SCN.All about rules.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d053fe48-6513-2b10-a59f-871923ff99d8
    Second thing workflows related question should be posted at
    SAP-Netweaver -> workflow
    Regards
    s@chin

  • How to use SAP Business Workflow along with Interactive Adobe Form

    Hi Experts,
    I am working on SAP Business Workflow since last couple of years.
    Now i have got a new Project where client wants to use SAP Business Workflow along with Interactive Adobe Form.
    I am new to Interactive Adobe Form and Portal thing and i really dont know from where to start.
    We have one central system and 2 local systems. when we do create a Material document using adobe form workflow should trigger and notification should go to group of users who can approve or reject it, once they approve it document gets created in central system and replicated to 2 local system through ALE.
    In the Local system they do extend the document to different plants, again workflow triggers and notification will go to Managers inbox for the approval.
    Once the final approval done data should go and store in SAP.
    Now here i have couple of Questions.
    1. In SAP R3 Business workflow when i execute the workitem from the inbox i do get the application screen ( i.e. MM01 MRP View ) , what is going to happen if the same case i have with Adobe form?? is it possible or do we have to design a adobe form and we will have to map the fields with backend application??
    2. Do i have to maintained 3 separate Org Structure for 3 different system or using UWL  i can manage the show
    3. Untill final submit is not done, where the application data is going to be, is there any kind of buffer that we will have to keep it or its there with XML file??
    Please help me out.
    Thanks in Advance.
    Regards,
    Manoj

    Hi Manoj,
    Welcome to ADOBE Forms related Workflow Development. Well, here are my answers.
    1) You can go for either go for ISR based development or WD development with Adobe form. In both the cases you can achieve your requirement. Yes, you will have to design the Adobe form and bind the fields to backend.
    2) Am not clear or your System landscape to advice you in these regards.
    3) Until final Submit/Approval is done, the data can be stored in WORKFLOW CONTAINERS or XML FORM(If you go for ISR based Development).
    Hope this helps.
    Regards
    <i><b>Raja Sekhar</b></i>

  • How to Use tag in JDeveloper 9i for a JSP Page

    Hi ,
    I am working on JDeveloper 9i. I have a problem that i use JSP page and two tag[b] fmt and core. The uri passed to taglib is http://java.sun.com/jsp/jstl/core and http://java.sun.com/jsp/jstl/fmt. i also have two jar file standard.jar and jstl.jar. when i compile the jsp page, the errors reflect " TAG is not registered". Can any one tell me that how can i use the tags in a jsp page in jdeveloper 9i.
    Thanks

    Hi ,
    I am working on JDeveloper 9i. I have a problem that i use JSP page and two tag[b] fmt and core. The uri passed to taglib is http://java.sun.com/jsp/jstl/core and http://java.sun.com/jsp/jstl/fmt. i also have two jar file standard.jar and jstl.jar. when i compile the jsp page, the errors reflect " TAG is not registered". Can any one tell me that how can i use the tags in a jsp page in jdeveloper 9i.
    Thanks

  • How to use Tag Removal for showDetailsItems in panelbox?

    Hi All,
    I have simple page with some command links.when i click link its renders the showDetails Items in other panelTable.for this i enabled Tag Removal property.
    but in UI when i click on remove(cross mark) i am not able to remove the showdetailsItems.how to do this .can any one please give me solution for the same.
    Thanks in Advanced
    Siva

    yes got it.
    I used some manged bean code and i have set itemListener property of ShowDetailsItem.
    public void staticPanelTabItemListener(ItemEvent itemEvent) {
    if (itemEvent.getType().equals(ItemEvent.Type.remove)) {
    Object item = itemEvent.getSource();
    if (item instanceof RichShowDetailItem) {
    RichShowDetailItem tabItem = (RichShowDetailItem)item;
    tabItem.setVisible(false);
    Thanks
    Siva

  • How to use tags from taglib in jsp

    i am using tomcat. I don't know where the taglibrary is stored i.e in which folder and how can i access that library and use it in the jsp pages.

    Refer to
    http://java.sun.com/webservices/docs/1.0/tutorial/doc/JSPTags4.html
    thanks,
    Deepak

  • How to use tag libraries?

    hi,
    I have an external taglibrary file, bean.tld. I want to use the tags of this file in portal component. Where shall i place this file in order to access it?
    regards,
    ganesh natarajan

    Hi,
    You can get some information from other threads
    Problem Using Taglibs with PortalApplication
    Problems with custom taglib (PD4ML)

  • Custom Tag - how to use tag value= %=jsp% / ?

    Hello friends,
    I am new to custom tags. I have written simple tags that handle value="some hard-coded stuff">.
    But cannot not implement jsp-supplied values? Could you please help with advice?
    Basically, how to implement a custom tag that would allow:
    <mylib:mytag value=<%=somejsp%> />
    Thank you!

    Just define it in your .tld ...
    Example:
    <attribute>
    <name>comments</name>
    <required>false</required>
    //IF this is set to true, u can add your jsp stuff... in your value
    <rtexprvalue>true</rtexprvalue>
    <type>String</type>
    </attibute>
    Usually, the .tld goes in WEB-INF/lib ... some people just put it in WEB-INF/

  • How to use Tag IDs generically

    Well, its harder to ask this question properly than it is to display an example of what I'm looking for.
    <jsp:useBean id="myId" class="myClass" />
    Now in scriptlet code I can access the methods as so:
    <% myId.myMethod() %>
    OK what I want to do is this:
    <% String strId = "myId"; %>
    <jsp:useBean id="<%=strId%>" class="myClass" />
    <% myClass.strId.myMethod() %> (Yes I know this syntax is incorrect, so I'm looking for the proper syntax)
    So basically I need to write some generic code so I can have several instances on myClass with different ids and access them generically based on strId. I know this is a simple one but I'm having a brain fart.
    Thanks is advance!

    Hey you are right, because the jsp:setProperty does support setting the property that way I figured I could set the useBean id that way.
    So busy worrying about how to access it didn't even check to see if the first part was legal.
    Thanks for the quick reply.

  • How to use GROUPS in WorkFlow

    Hi All,
    I'm using OraBPEL 10.1.2 for JBOSS..
    I've configured my LDAP info in the is_config.xml file in this way:
    User -> my LDAP TREE for USER
    Role -> my LDAP TREE for GROUPS
    When I start a new task (by TaskActionHandler) with any user, I see it in the worklist app, the same if I assign it to multi-user.
    But, if I assign it to a group, I can't see it.
    The TaskActionHandler doesn't return any error, so I think the conf is ok!
    Do you have any idea?
    tnx

    What I do, when I assign it to a user or group. I use the global variable of the human task to set the "systemMessageAttributes/task:textAttribute1". Then in the human task (*.task file) I specify the group or user:
    <participant name="Assigned To">
    <resource isGroup="false" type="XPATH">/task:task/task:systemMessageAttributes/task:textAttribute1</resource>
    </participant>
    and for a group:
    <participants isAdhocRoutingSupported="false">
    <participant name="Assigned To">
    <resource isGroup="true" type="XPATH">/task:task/task:systemMessageAttributes/task:textAttribute1</resource>
    </participant>
    </participants>

  • How to use loop in workflow task description

    loop doesnt work in pftc task description command line. please help

    Hi,
       Could you plse check this link 'http://mailman.mit.edu/pipermail/sap-wug/2005-February/016575.html'  to solve ur problem
    Regards,
    Rajeswari

  • How I use standar Workflow "Approve Travel Request"?

    Hi,
    I implemented in ESS the "trips and Expenses" option run correctly, but I dont know how I use(or active) workflow (when section in IMG for example)
    I found the link
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/04/928bc146f311d189470000e829fbbd/content.htm
    but I dont know web, please excuse me if  the question is beginner
    thanks for your posts and helps
    Ivan

    hi Arghadip and Any
    I reviewed the inbox in sender of the  travel request
    http://img28.imageshack.us/img28/3489/inbox.jpg
    I entered log the message and workflow
    http://img175.imageshack.us/img175/5951/workflowlogtripnoagents.jpg
    It shows message "no agents"
    http://img198.imageshack.us/img198/6858/workflowtrip.jpg
    http://img208.imageshack.us/img208/853/workflowlogtrip.jpg (View of the workflow)
    Sometime ago in my SAP system implemented the workflow "Leave Request" (implementation is succesful)
    http://img411.imageshack.us/img411/7945/workflowleave.jpg (Inbox the sender of the leave request)
    http://img514.imageshack.us/img514/8268/workflowleaveagents.jpg (the leave requests included agents)
    sometimes ago, In my sap systeme implemented the "leave request", at the beginning of the implementation required this action:
    <i><b>
    To copy the standard workflow, go to transaction PFTC.
    Select the task type u201CWorkflow templateu201D and enter the workflow number in the task number. Click on u201CCopy tasku201D.
    WS12300111
    </b></i>
    I can apply the same in my travel request? how?
    in my Agent grid in the workflow of "Travel Request" shows agent WF-batch
    http://img638.imageshack.us/img638/8432/agentswf.jpg
    In case of the "leave request" shows wf-batch and Manager (Quiroz) definided en the PPOME
    http://img532.imageshack.us/img532/4/agentswfleaverequest.jpg
    How I use the workflow template? (in my case is WS200000050)
    thanks your post and help
    Ivan

Maybe you are looking for

  • Can I share books between family members with different Apple IDs?

    I am trying to share books within my family as we were always able to do with home share in iTunes.  Is this possible? I can phisically move the book file, but must sign in as my Apple ID on my wire's system, effectively removing her library from her

  • Enhance generic datasource

    I developed a generic datasource and need some enhancements to custom fields. I got the following error in my ABAP code. Field "ZOXDV10019-ZZENDUSER" is unknown. Here is my code, *&  Include           ZXRSAU01 TABLES:  VBPA. DATA:    l_s_zsales LIKE

  • Acceptable video formats for iPhone

    I am attempting to download music videos and movies to my iPhone. I've found in the past the mp4 files work for videos, but recently, mp4 files have not been working. I get a message saying that the file is not compatible with iPhone. Any suggestions

  • Link Server Problem

    Hello  I have 2 window dedicated server, both are window 2008 R2 with SQL Server. I created linkserver on both server but when I run delete query than I get this error OLE DB provider "SQLNCLI10" for linked server "XXX.XX.XXX.XXX" returned message "N

  • The email notification sound is always the glass even when I change it

    The email notification sound is always the glass even when I change it, tried many different sounds but the email always sounds as the glass Pls help at wits end