Need UDF or other solution

Hello all,
My idoc is having segment ZTEST and under that i am having E1EDP01.
I want to mapp the two segments to ZZSUB and ZZLIN which are at same level.
I would like to display the structure as below,
ZZSUB   
ZZLIN (Document Item = 10)
ZZSUB   
ZZLIN (Document Item = 10)
ZZSUB.      
ZZLIN (Document Item = 20)
ZZLIN (Document Item = 30)
ZZSUB       
ZZLIN (Document Item = 10)
Please can anybody help me in this.
Edited by: Siddhesh Pathak on Nov 6, 2008 10:28 AM
Edited by: Siddhesh Pathak on Nov 6, 2008 11:58 AM

You can buy an external media box for a tv. The ones that come to mind are appleTV, Roku, sling box, patriot, and a few others. Most will play MP4s, but will have to check the specs when I have some time later. They all run about $100-$200.

Similar Messages

  • Lightroom CC crashes on startup and "sign out, sign in" solution doesn't work, any other solutions?

    I downloaded LR CC on myMacbookpro and iMac.
    LR5 was installed on both of them previously.
    After installing, LR CC works fine onM Pro, but keeps crashing on iMac.
    I've tried the "sign out, sign in" solution, but never works for me.
    Is there any other solution I can try?
    Since the update, I've edited photos on my 13' M pro instead of 27' iMac and it is getting annoying...

    Did you update to LR 6.0.1 / LR CC 2015.0.1 ?
    <snip>
    von Pete.Green (30. April 2015)
    Today we released an update to Lightroom, Lightroom CC 2015.0.1 (Also, Lightroom 6.0.1) is now available.
    This bug fix addresses issues related to launching Lightroom and accessing online help.
    To Update:
    Choose "Help > Updates" within Lightroom, or click Update from the Creative Cloud desktop application.
    (If you're an early downloader, you may need to restart the CC Desktop application for update to show)
    <snip>

  • Same filename from a sender to receiver :: DO we really need UDF ?

    Hi
    This is in refrence of Weblog " <i>same filename from a sender to a receiver file adapter "</i> by <i>Michal Krawczyk</i>.
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    Actually I worked on another weblog by " <i>Shabarish Vijayakumar</i> "-->
    /people/shabarish.vijayakumar/blog/2006/04/03/xi-in-the-role-of-a-ftp
    And I am getting file created on the receiver side with the same file name as on the sender side without using the user-defined function mentioned in Michal's weblog.
    Now my question do we really need UDF for same file name when on the sender we are polling for one file only by its name.
    I am not exaclty getting the benefit of this feature. Can you tell me why do we need this feature as in whatever scenarios I worked I mentioned the file names in both Sender & Receiver File Adapters.
    So I am not getting what is the use of using this UDF, when we mention the name of file needs to be created on Receiver side.
    - Lalit Chaudhary -

    Hi
    I put this code for UDF -->
    <i>String valueNew;
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String valueOld = conf.get(key);
    if (valueOld != null)
        valueNew = valueOld.replaceAll("input123",name);
        conf.put(key, valueNew);
    return valueNew;</i>
    Signature of UDF is this :: <u>public String GetFileName(String name,Container container)</u>
    But when I am testing this UDF, I am getting following RunTime exception -->
    <i>Runtime exception during processing target field mapping /ns0:FileFTP_InOut_MT/File_nm. The message is: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._FileFTP_MsgMapping_UDF_ method GetFileName$[lalit, com.sap.aii.mappingtool.tf3.rt.Context@735df3b0] com.sap.aii.mappingtool.tf3.MessageMappingException: Runtime exception during processing target field mapping /ns0:FileFTP_InOut_MT/File_nm. The message is: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._FileFTP_MsgMapping_UDF_ method GetFileName$[lalit, com.sap.aii.mappingtool.tf3.rt.Context@735df3b0]</i>
    I am not much of Java Guy, can you pls. suggest what am I doing wrong, I copied this code from <a href="http://help.sap.com/saphelp_nw04/helpdata/en/43/03612cdecc6e76e10000000a422035/content.htm">SAP Help</a>
    - Lalit -

  • In Top 10 with two dimension i need to add others in my MDX query

    Hi this is code working fine and return top 2  product in a  state. i need to add other sales also how can we do
    with set FIPS as [Geography].[State-Province].[State-Province]
    set TCat as
    Generate( {FIPS}, CrossJoin( {[Geography].[State-Province].CurrentMember},
    TOPCount(
             ([Product].[Subcategory].[Subcategory]),
             2,
             [Measures].[Sales Amount]
    SELECT { [Measures].[Sales Amount] } ON COLUMNS,
    TCat  ON ROWS
    FROM [Adventure Works]
    hi fond one code it is work for one dimension only, i need for two dimension
    WITH
    SET [TCat] AS
    TopCount([Product].[Subcategory].[Subcategory],10,[Measures].[Sales Amount])
    MEMBER [Product].[Subcategory].[Other] AS
    Aggregate([Product].[Subcategory].[Subcategory] - TCat)
    SELECT { [Measures].[Sales Amount] } ON COLUMNS,
    TCat + [Other] ON ROWS
    FROM [Adventure Works]

    Hi,
    We will have to generate a set of tuples that includes both dimensions:
    WITH
    SET [Top2] AS
    Generate
    {[Customer].[State-Province].[State-Province].MEMBERS}
    [Customer].[State-Province].CurrentMember
    ,TopCount
    (EXISTING
    [Product].[Subcategory].[Subcategory].MEMBERS)
    ,2
    ,[Measures].[Internet Sales Amount]
    MEMBER [Product].[Subcategory].[All].[top2Aggr] AS
    Aggregate((EXISTING [Top2]))
    MEMBER [Product].[Subcategory].[All].[all Subcat] AS
    [Product].[Subcategory].[All]
    MEMBER [Product].[Subcategory].[All].[others] AS
    Aggregate
    (EXISTING
    [Customer].[State-Province].CurrentMember
    ,[Product].[Subcategory].[Subcategory].MEMBERS
    [Top2])
    SELECT
    {[Measures].[Internet Sales Amount]} ON COLUMNS
    [Customer].[State-Province].[State-Province].MEMBERS
    [Product].[Subcategory].[top2Aggr]
    ,[Product].[Subcategory].[others]
    ,[Product].[Subcategory].[all Subcat]
    } ON ROWS
    FROM [Adventure Works];
    If you plan to tweek this solution, you may want to align the dimensionality of the [all Subcat] member with the others members by changing its definition:
    MEMBER [Product].[Subcategory].[All].[all Subcat] AS
    aggregate(EXISTING
    [Customer].[State-Province].CurrentMember
    ,[Product].[Subcategory].[All]
    The former defintion also works in our case because it's a singleton set and it is put in a tuple when crossjoined with the axis 1 giving it the right dimensionality.
    Philip,

  • Photoshop CS2 opens but wont perform any task (open jpgs, create new jpgs etc). Other CS2 progs such as indesign are fine. MAC shop, couldn't fix, said I should ty install op system 4 Powerbook G4-dont have discs- can I get them?other solution? OS 10.4.11

    Photoshop CS2 opens but wont perform any task (open jpgs, create new jpgs etc). Other CS2 progs such as indesign are fine. MAC shop, couldn't fix, said I should try install op system 4 Powerbook G4-dont have discs- can I get them? or other solution? Am using OS 10.4.11 Thanks for any help

    Hi
    I actually dont think its Lion (sorry i put that as couldn't remember) as not on that computer at the moment, its at home, I am at work. I know CS2 is compatable with whatever OS I am using because I can using CS2 indesign etc and I was able to use CS2 photoshop until I updated the Camino browser (I believe this is when it stopped working). I have CS5 but it wont work at all on my Powerbook G4.
    I can send a message later with the OS I am using and maybe you can suggest other help? They told me in the MAC shop to try and get the installation discs. They also said I would be able to get these via Apple's 'media replacement programme' which I cannot find anyway! To be honest, I am not even sure getting the install discs will work but I'll try whatever I need to try and get Photoshop working on it again!
    Thanks

  • Hello, I have a Macbook Pro 2011, and put an SSD on it. Yesterday i upgrade to Yosemite and sadly mi trim is not supported .... I really need (and demand) a solution to this, because like i see in the manual of the mac, Iam allowed to install a disk.

    Hello, I have a Macbook Pro 2011, and put an SSD on it. Yesterday i upgrade to Yosemite and sadly mi trim is not supported .... I really need (and demand) a solution to this, because like i see in the manual of the mac, Iam allowed to install a disk.

    Try a Safe Boot to clear the dyld_shared_cache (dynamic loader cache)
    SafeBoot  http://support.apple.com/kb/HT1564
    Safe Boot, which automatically rebuilds this cache (among other things).

  • Need RTF PDF API solution and not Online Solution

    Greetings,
    I need to build a solution which runs on a Win2008 R2 64 bit OS.
    I have literally millions of documents in my database as RichText data that I need to create PDF's for.
    Please advise.
    Thanks
    John

    We do support IE 7/8/9 and 10, this should be working in all...
    Are the computers all on the same network?
    On the machines where you cannot save the response as PDF can you "save/export" anything else?  Can you try, from the File menu "Export Responses" and see if you can export an Excel file of the responses?  Can you try an alternative web browser (Firefox or Chrome) on the machine/s that are not working?
    When it does not work you are seeing a progress bar that never completes?  When you cancel that and try again you have the same result?
    Thanks,
    Josh

  • We need to implement EP Solution for Supplier Portal

    Hello All,
         I'm working on BSP's and Portal since 1 Year.
    The Portal Implementation is already done before I started working on it.
    Now my scenario is as folows :
    We need to implement EP Solution for Supplier Portal .
    For this we want to know what are all the activities involved.
    Can anyone throw some light on it ?
    Regards,
    Deepu.K

    We have to make setting for displaying all the roles defined for supplier portal to reflect in the EP.Portal is integrated with Webclient of CRM so make sure all changes done in the webclient are reflected in the Portal thing.

  • HT1338 Photoshop CS2 opens but wont perform any task (open jpgs, create new jpgs etc). Other CS2 progs such as indesign are fine. MAC shop, couldn't fix, said I should ty install op system 4 Powerbook G4-dont have discs- can I get them? or other solution?

    Photoshop CS2 opens but wont perform any task (open jpgs, create new jpgs etc). Other CS2 progs such as indesign are fine. MAC shop, couldn't fix, said I should ty install op system 4 Powerbook G4-dont have discs- can I get them? or other solution?

    Hi
    I actually dont think its Lion (sorry i put that as couldn't remember) as not on that computer at the moment, its at home, I am at work. I know CS2 is compatable with whatever OS I am using because I can using CS2 indesign etc and I was able to use CS2 photoshop until I updated the Camino browser (I believe this is when it stopped working). I have CS5 but it wont work at all on my Powerbook G4.
    I can send a message later with the OS I am using and maybe you can suggest other help? They told me in the MAC shop to try and get the installation discs. They also said I would be able to get these via Apple's 'media replacement programme' which I cannot find anyway! To be honest, I am not even sure getting the install discs will work but I'll try whatever I need to try and get Photoshop working on it again!
    Thanks

  • Use of other solutions' BOs

    Dear experts,
    I want to use custom BOs of another deployed solution of mine (both solutions are in the same deployment unit): I want to reference (an retrieve) them via associations and in this context I also need the OVS controls of the other solution.
    Problem: In my solution in development the BOs are not recognized; do I have to address a certain namespace?
    Thanks for your answer in advance!
    Kind reagards -
    Markus

    As Ludger Bünger said that is possible using ws.
    Please follow my blog
    Simulate an instance attribute and share the value between bo and solutions

  • HT5002 I used Inkscape on Linux before moved to Mac. Now I am trying to install it using MacPorts, but libpixman has some problems that has been reported out there. Does any one know how to fix it without the need to use other way than MacPorts?

    I used Inkscape on Linux before moved to Mac. Now I am trying to install it
    using MacPorts, but libpixman has some problems that has been reported out there.
    Does any one know how to fix it without the need to use other way than MacPorts?

    Start with this comprehensive troubleshooting article:
    https://discussions.apple.com/docs/DOC-3521
    Look at this one for possible solutions:
    https://discussions.apple.com/docs/DOC-3353
    Ciao.

  • I am developing a flex web application which needs to access Other domain ,is there any other way other than cross domain policy available ? please help

    i am developing a flex web application which needs to access Other domain (Payment Gateway API),is there any other way other than cross domain policy available ? please help.
    we donot have access other domain thats why we want other solution..

    All the paths to CFCs are the same in my live production site.  Can you be more specific as to what you mean by "RemoteClass aliases in your AS Classes and CFCs (if any) are correct."?  How will the app know that the CFC is on http://myLiveSite.com instead of http://myDevSite.com?  The only line of code that I have noticed that points to a URL is the endpoint in a file called _Super_XXX.as.  And at the top of that file it says that the file is not meant for editting.
    To clarify...I see your app/code all exists on a server access via a web browser so I can understand that everything still works when deployed.  Mine is a mobile app so when I am developing and testing on my local computer the URL points to my local development machine.  However when I deploy it to a mobile device like a tablet and run the app, it needs to be able to access a cfc on a remote server via a different URL ie. my http://myLiveSite.com/myCFC.cfc instead of http://localhost/myCFC.cfc
    Thanks for your help!  I will now take a look at your thread.
    Message was edited by: ace0215

  • XML import vs other solutions

    Been away from Adobe products for years but for one own personal project digging into Indesing CS6 now, trying to learn it again (I've been involved in launching first version ages ago into Finnish market), in relatively terms as never really used it. Anyway, enough blah-blah-blah
    I'm having a project where I have texts coming out from database, nothing really structured. Basically ID's Tagged Text is enough for creating a nice looking document automatically. Only problem are images..
    I need to use icons and images randomly, some outside the body text (in a margin), some inside a text. Some images are used multiple times in different places, some just once. And unfortunately Tagged Text does not support images (as I think I could manage the placing quite nicely with Object Styles. But those damn images cannot be automatically placed onto a page via Tagged Text..
    So, been wondering if XML workflow would be the solution but how well location of images can be managed via XML/XLS/XLTS/DDT/ATLAs? (ATLA = another three letter acronym)
    Or is there any other solutions? I guess something like EM's XTag would work quite nicely but for this (my personal) project I am not willing to shell out 400 especially as DB guys can do it for me "free"..
    Anyone having any pointers to where to look for a solution? Beers on me ..

    I completely agree. Lightroom needs much more robust and efficient Import and Export features for Metadata. Especailly if Adobe wants people who are currently working with programs such as Extensis Portfolio and MS Expressions. Portfolio offers the best options for Import and Export. Expressions is a far second and LR is nonexistent in this area.

  • What components do we need to implement NAP solution ?

    We use win2003R2 and win2008R2 servers , win7 laptop,win2008 DHCP, cisco 802.11x switch,Access Point, cisco acs radius server, windows CA.
    I am planing to implement NAP solution.
    What components do we need to implement NAP solution ?
    I think it needs NAP server role and third-party antivirus Win NAP compatible software.

    Hi,
    As we know, there are five NAP enforcement methods, NAP Enforcement for IPSec Communications, NAP  Enforcement for 802.1x, NAP Enforcement for DHCP, NAP Enforcement for Terminal Services Gateway, NAP Enforcement for VPN.
    Due to you have many devices in your environment, which is the primary means that you want to deploy NAP? In my point of view, you could configure NAP enforcement for DHCP or for 802.1x Wireless or for 802.1x Wired.
    To deploy DHCP NAP, we need a DC, a NPS server as RADIUS server, a DHCP server as a RADIUS clients and a DHCP client.
    To deploy NAP Enforcement for 802.1x Wireless, we need a DC, a CA, a NPS server as RADIUS server, a 802.1x wireless access point as a RADIUS client and a 802.1x wireless client.
    To deploy NAP Enforcement for 802.1x Wired, we need a DC, a CA, a NPS server as RADIUS server, a 802.1x authenticating switch as a RADIUS client and a 802.1x wired client.
    You could choose one of these NAP enforcement based on your environment. More details about NAP configuration, please refer to links below,
    Checklist: Configure NAP Enforcement for DHCP
    http://technet.microsoft.com/en-us/library/cc772356(v=ws.10).aspx
    Checklist: Configure NAP Enforcement for 802.1X Wireless
    http://technet.microsoft.com/en-us/library/cc753793(v=ws.10).aspx
    Checklist: Configure NAP Enforcement for 802.1X Wired
    http://technet.microsoft.com/en-us/library/cc730926(v=WS.10).aspx
    Best Regards,
    Tina

  • I can no longer get my complete bank statements online, and my bank blames the Safari update and tells me to switch to Firefox.  Is there no other solution?

    I can no longer get my complete bank statements online, and my bank blames the latest Safari update and tells me to switch to Firefox.  Is there no other solution?

    I would feel dreadful If I thought had caused you a problem.   The warnings about Java are fully justified but providing you are communicating with a known source, and as I said, you disable it the moment you have finished, you should be safe.
    It might also be worth asking your bank what problem they have and would it be the same if you were using Firefox, for example.
    Like you, I am very security minded, in fact I won't even put my bank details on my Mac let alone run my account that way. 

Maybe you are looking for

  • How do I migrate bookmarks from one HD to another?

    Windows XP became corrupted (?). It was cheaper to install another hard drive, and install windows on the new drive (backing up the original HD would cost more than the new HD did....) The old drive is easily accessed. How do I migrate Firefox bookma

  • Customer exit for tab 'Billing Plan' at item level in VA02

    Hi gurus, is there any customer or user exit for tab 'billing plan' in va02 where we find other tab like SALE A, SALES B, SHIPPING etc, i allready tried mv45afzz (userexit_field_modification) and exit V60F0001( Cmod). the requirement is to suppress f

  • Getting a netative value from InetAddress...

    I have an IP address that I am trying to convert to an InetAddress so I can pick out pieces of it. Unfortunately, when I use the following code, the first region of the IP address is a negative number... Am I doing something incorrectly? (I put in a

  • PIXMA Pro9000 Mark II print issue with Mac

    I am having issues printing photos.  The picture comes out really dark, and the color is not right.  I am using the latest version of Mac.  How can I fix this issue?

  • N8 Belle Hotmail Folder Sync Problems

    Hi, recently I had to do a software reinstall due to a faulty SIM and when I reconnected to my Hotmail it no longer shows my hotmail folders (other than the usual inbox/outbox etc), and it's not syncing deletions or read mail when I go to hotmail via