APD Issue - Text not showing up

Hi All,
We are configuring APD to run a 'query' and dump 'Large files' on to a directory path in Application server. APD is simple, Query - Transformation - PC File.
This solution as such is working fine.  However, even if the 'Query' is set to display 'Text' (say for 'Customer' characteristics) the dump picks up 'Customer code' and not the Text.  Our solution also carries 'Hide or Rename column' transformation.
Tapan

Hi Tapan,
I had to face same issue.
We cannot get text through APD by BEx setting.
By default APD reads Key from BEx query.
Only way is to use "Join" from the text tables of master data.
You are right that you need to use as many joins as the number of text fields needed.
comming to the performance of the "Join", It did not impact much on the execution time (at least for me - I am using 3 joins to get descriptions for 3 fields -- APD with out joins takes approximately 10mins and with joins takes approximately 10mins 30sec to generate a huge file of 20MB)
Hope this helps.
Experts let us now if there is any other way for this.
Thanks & Regards,
Vidya Sagar

Similar Messages

  • APD issue, Data not showing correctly in APD.

    Hi All,
    Please guys help me with this APD issue that I am facing.
    There is an APD created whose target is a file and with one routine. Here the purpose of the routine was mostly just to sequence the fields the way I want them, and only to show certain ones, also to delete all KF that are zero.(which is commented out).
    No matter what I do, it always gets data which has the key figures as all zeros.  I put some code in there to delete the data which is all zeros but commented it out, because otherwise then it writes zero records.
    The code part which delete all KF that are zero is commented out. Now we are getting the file data with commented code and without commenting code same.
    The thing is, in Bex the query from which we are fetching data is showing proper data with zeroes as well as KF with values. But the same APD is showing only the data whose KF's are zeroes.
    I am pasting the routine here:
    REPORT RSAN_WB_ROUTINE_TEMP_REPORT .
    TYPES: BEGIN OF y_source_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             KYF_0001 TYPE /BIC/OIZBAS_FCST ,
             KYF_0002 TYPE /BIC/OIZTUN_QTY ,
             KYF_0002_UNIT TYPE MEINS ,
             KYF_0003 TYPE /BIC/OIZCOR_FCST ,
             KYF_0004 TYPE /BIC/OIZTOT_FRCT ,
             KYF_0005 TYPE /BIC/OIZTER_TFCT ,
           END OF y_source_fields .
    TYPES: yt_source_fields TYPE STANDARD TABLE OF y_source_fields .
    TYPES: BEGIN OF y_target_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             ZBAS_FCST TYPE /BIC/OIZBAS_FCST ,
             ZTUN_QTY TYPE /BIC/OIZTUN_QTY ,
             BASE_UOM TYPE /BI0/OIBASE_UOM ,
             ZCOR_FCST TYPE /BIC/OIZCOR_FCST ,
             ZTOT_FRCT TYPE /BIC/OIZTOT_FRCT ,
             ZTER_TFCT TYPE /BIC/OIZTER_TFCT ,
           END OF y_target_fields .
    TYPES: yt_target_fields TYPE STANDARD TABLE OF y_target_fields .
    Begin of type definitions -
    *TYPES: ...
    End of type definitions -
    FORM compute_data_transformation
         USING     it_source TYPE yt_source_fields
                   ir_context TYPE REF TO if_rsan_rt_routine_context
         EXPORTING et_target TYPE yt_target_fields .
    Begin of transformation code -
      DATA: ls_source TYPE y_source_fields,
            ls_target TYPE y_target_fields.
      LOOP AT it_source INTO ls_source.
       IF ls_source-KYF_0001 = 0
       AND ls_source-KYF_0002 = 0
       AND ls_source-KYF_0003 = 0
       AND ls_source-KYF_0004 = 0
       AND ls_source-KYF_0005 = 0.
         DELETE it_source.
         EXIT.
       ENDIF.
        MOVE-CORRESPONDING ls_source TO ls_target.
        APPEND ls_target TO et_target.
      ENDLOOP.
    End of transformation code -
    ENDFORM.
    End of transformation code -
    ENDFORM.
    Please help me and reply. Good answers are appreciated and rewarded with points.
    Thanks,
    Sumisha Subramanian.

    Hi All,
    Please guys help me with this APD issue that I am facing.
    There is an APD created whose target is a file and with one routine. Here the purpose of the routine was mostly just to sequence the fields the way I want them, and only to show certain ones, also to delete all KF that are zero.(which is commented out).
    No matter what I do, it always gets data which has the key figures as all zeros.  I put some code in there to delete the data which is all zeros but commented it out, because otherwise then it writes zero records.
    The code part which delete all KF that are zero is commented out. Now we are getting the file data with commented code and without commenting code same.
    The thing is, in Bex the query from which we are fetching data is showing proper data with zeroes as well as KF with values. But the same APD is showing only the data whose KF's are zeroes.
    I am pasting the routine here:
    REPORT RSAN_WB_ROUTINE_TEMP_REPORT .
    TYPES: BEGIN OF y_source_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             KYF_0001 TYPE /BIC/OIZBAS_FCST ,
             KYF_0002 TYPE /BIC/OIZTUN_QTY ,
             KYF_0002_UNIT TYPE MEINS ,
             KYF_0003 TYPE /BIC/OIZCOR_FCST ,
             KYF_0004 TYPE /BIC/OIZTOT_FRCT ,
             KYF_0005 TYPE /BIC/OIZTER_TFCT ,
           END OF y_source_fields .
    TYPES: yt_source_fields TYPE STANDARD TABLE OF y_source_fields .
    TYPES: BEGIN OF y_target_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             ZBAS_FCST TYPE /BIC/OIZBAS_FCST ,
             ZTUN_QTY TYPE /BIC/OIZTUN_QTY ,
             BASE_UOM TYPE /BI0/OIBASE_UOM ,
             ZCOR_FCST TYPE /BIC/OIZCOR_FCST ,
             ZTOT_FRCT TYPE /BIC/OIZTOT_FRCT ,
             ZTER_TFCT TYPE /BIC/OIZTER_TFCT ,
           END OF y_target_fields .
    TYPES: yt_target_fields TYPE STANDARD TABLE OF y_target_fields .
    Begin of type definitions -
    *TYPES: ...
    End of type definitions -
    FORM compute_data_transformation
         USING     it_source TYPE yt_source_fields
                   ir_context TYPE REF TO if_rsan_rt_routine_context
         EXPORTING et_target TYPE yt_target_fields .
    Begin of transformation code -
      DATA: ls_source TYPE y_source_fields,
            ls_target TYPE y_target_fields.
      LOOP AT it_source INTO ls_source.
       IF ls_source-KYF_0001 = 0
       AND ls_source-KYF_0002 = 0
       AND ls_source-KYF_0003 = 0
       AND ls_source-KYF_0004 = 0
       AND ls_source-KYF_0005 = 0.
         DELETE it_source.
         EXIT.
       ENDIF.
        MOVE-CORRESPONDING ls_source TO ls_target.
        APPEND ls_target TO et_target.
      ENDLOOP.
    End of transformation code -
    ENDFORM.
    End of transformation code -
    ENDFORM.
    Please help me and reply. Good answers are appreciated and rewarded with points.
    Thanks,
    Sumisha Subramanian.

  • Non-button text not showing up in menu

    Is it normal for text in a Blu-ray menu that is not a button to not show up in the menu once it is on a disc or disc image? This is the last issue I am having.
    I have some text on a menu that is just text. I have had plain text in the past work perfectly, but this time around Encore isn't rendering it. In the past though, my motion menu footage was in compliant m4v format, and this time it's mp4 so that Encore would transcode it. Using m4v was causing red frames to show up in the footage.
    Is there a way for me to fix this easily, either in Encore of Photoshop?

    I feel really slow...
    The only background in a multipage menu is the background in page 0.
    When you add anything to the page 1 or 2 groups, it can only be a button.
    So yes, the workaround to getting text that only shows on a single page is to put it in a button.
    You told us everything we needed in the original post, except, of course, that it was a multipage - but the symptom made that an easy guess. Sorry a little slow on getting there!

  • HELP! animated text not showing up in final render (after effects)

    I'm using position and motion blur for my animated text. I changed the font several times to see if there was any license issues and there isn't. I also put a static text layer in the file and then rendered, and THAT text will show up, but moving text refuses to show up. What can be the problem? Please help!

    We need to know a lot more if we're going to help you. Please provide answers to the questions listed here: "FAQ: What information should I provide when asking a question on this forum?"
    Note, especially the request for screenshots of the relevant panels, such as the Timeline panel and Composition panel.

  • Multiple Lines of Text not showing up

    Hi,
    Recently we have observed on a particular site in SharePoint farm that whenever we are adding list field of Multiline Text.
    It is not showing up in list forms (New, Display, Edit). Test is Multiple Lines of Text field. This is happening on all the existing as well as new lists.
    I searched for the issue but couldn't find any solution.
    Please guide me on this issue. Appreciate your help.
    Thanks,
    Rahul Babar
    ASP.NET, C# 4.0, Sharepoint 2007/2010, Infopath 2007/2010 Developer http://sharepoint247.wordpress.com/

    Hi Rahul,
    Per my understanding, the Multiple Line of Text column not showing up in all the form pages in one of your site.
    I suggest you do as follows to troubleshoot this issue in your environment:
    1. Is there any update or customization applied to this site recently?
    2. Please inspect the HTLM source code of the Multiple Line of Text field in NewForm page to see if there is corresponding HTML code in the page. In my page, the HTML
    code of the Multiple Line of Text field like this:
    3. If the HTML structure exists, then it is probably a CSS issue, please check if there is custom CSS style applied to this site which would conflict with the built-in
    style of the Multiple Line of Text field.
    Thanks 
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Calendar issue - Does not show entries previous Ja...

    Hi, 
    from beginning of January the calendar of my Lumia does not show any more entries made previously ! It was working  but from I think 7th of January nothing .. The calendar is sync with outlook.com calendar and if I go to http://calendar.live.com I see all my previous data correctly.
    I have tried to do a soft reset , nothing . I have tried to remote outlook.com account and reinsert , nothing !
    I have installed an other calendar application called “chronos calendar” and this one show me some previous data last year but nothing from November-December ... I have written to microsoft community but no more info . I use a lot of the info of calendar for my job and for me it is an important issue !
    I hope a fast solution ...
    Regards,

    Hi,
    You can open a second calendar in a new window and display up to 30 calendars in side-by-side view. You can also overlay calendars to see transparent calendars stacked on top of each other. This view is useful when you want to find a common free time slot
    on several different calendars.
    In Calendar, in the Navigation Pane, right-click the name of another calendar that you want to view.
    Click Open in New Window.
    The calendar that you selected opens in a new Outlook window.
    More information refer to the following article:
    View calendars side-by-side or overlaid
    Niko Cheng
    TechNet Community Support

  • Text not showing in PDF created for print

    After exporting an illustrator document I tred to make a high quality PDF for print but the text does not show in the PDF file.

    Impossible to know. You have not provided any info about your document, what font you used, what appearances on the text, what PDF settings, what system or even what version of AI plus how you review the document. From the font simply not being allowed to be embedded to specific appearances not rendering correctly to unsuitable PDF settings there could be anything at work here. You need to be much more specific.
    Mylenium

  • Interactive pdf issue, text wont show up when playing the slidewshow

    I am having a hard time trying to figure out how i can add text on top of am mp4 file and making it work once exported as an interactive pdf. For some reason the mo4 plays fine but the text will not show up. It seems like it will work fine when i look at the swf preview windon in indesign. I can add text a to a page with an im image in the back and that works fine. But not sure why the text wont show up if its an mp4 file instead. anyone have any sugestions?

    havent really worked with buttons on Indesign. But I do recall converting the text into an swf file, and placing it on top of the mp4 file, the text is above but its simply a big white box, rather than it just being the text, but thanks for letting me know why it is that my text would never show up haha, It was getting on my last nerves, I may just simply go into my psd file and adding text over all the layers that made the video then using just the mp4 as the first slide without having to go in and adding text with indesing. Hopefully there is a way to work around it, I hate rendering videos with photohsop, takes foreve.

  • Header text not showing up in browser

    My h2 text is not showing up in the browser (IE).  Also of concern is the bad formatting that appears when this page is opened in Chrome.  Any thoughts?
    http://moxiespeak.com/
    THANK YOU!

    Your CSS and JS links are all pointing to files on your hard drive.
    e.g.
    <link href="file:///C|/Users/christy/Documents/Moxie Speak 05 23 11/Moxie Speak Branding/Rejects/Final website/Original Template/site/css/reset.css" rel="stylesheet" type="text/css" />
    should read something like
    <link href="css/reset.css" rel="stylesheet" type="text/css" />

  • T42 (Type 2378) Rescue and Recovery text not showing up in GUI

    I have a machine that I hit the IBM button to restore my system back to its factory settings.  It loads up fine but when I hit the [Restore your system] it pulls up a new window and has 3 bullets I can select from, but there is NO text on the window.  Not even the < Back or Next > or Cancel button texts are showing up. I need to restore it but I don't know which bullet to select and if I select a random one, the next screen pulls up but still no text.  Any ideas?

    Thank you! I had to change my fast preview settings. I chose OpenGL Active instead of Wired Frame. Although, I'll have to play around with it because I got an error message last night that said it caused the program to crash.

  • CD Text not showing up on burned cd's.

    When I burn a cd, the cd text is not showing up even though I have the include dc text option checked. Any suggestions?

    iTunes has an option to burn CD Text, but it does not have the ability to read CD Text. If the CD Text is burned on the CD, then any of the ripping tools listed in this article will be able to read the CD Text.
    If you don't have the time to look at that link here is a summary: almost all ripping tools except iTunes can read CD Text.

  • Incoming texts not showing on Bluetooth system

    My i-phone 5s  incoming messages are only randomly appearing via Bluetooth. Occasionally I receive one which displays in unread messages. When I move from unread to read it remains. Thereafter the text message disappears when I negotiate between unread/read. " No message using this filter " No historical record of any texts remain in the system Is there some incompatibility between Bluetooth and i-phone 5s set-up? My vehicle is a BMW F10. Thanks for help.

    I have now run the latest Bluetooth updates on the info system today. Still the same problems- texts either not appearing or disappearing after being opened up in unread messages but not showing in all texts. Also no sound notification for incoming messages.

  • Text not showing up on various phones

    On the mobile site im working on the phone and fax in the footer is not showing up on iphones but its showing up on the androids. How do I fix this issue so it works for the iphones?

    Hi
    Sorry, it could be as simple as a CSS color: selector set to the same color as your background, but all problems and solutions are in your code
    We need to see ALL your files to solve your issue quickly and accurately without a lot of guessing and questions back-and-forth.
    To prevent others from seeing a page with errors, just rename a copy of your problem page  (such as "test.html")  and upload it to your server (with any associated files) in whatever folder the original page was located, and simply post a link in the Forum and tell us your problem.
    This saves you having to cut and paste miles of code into the Forum for the page and all the dependent CSS, JS etc. files.and saves us from having to recreate all your files, find your images and then repair your code and test the solution for you.
    I trust this is helpful.

  • Titles/text not showing up online

    Just created pages/album with the black background theme.
    the text/titles are NOT showing online.
    what gives? thanks.

    Could it be that the text is black and not showing up against the background. Click and drag the cursor over the page in the browser to see if the text shows up.
    In iWeb go to the Album page where the thumbnails are displayed click on one and do a Select All. Next click on the Font button at the bottom and in the Font pane click on the 3rd button from the left, the one with the green square. There you can set the color you want.
    This demo page has the first picture's text set to the background color so you can see the effect of dragging the cursor over it to see the hidden text.
    OT

  • $10 Rewards Certificate earned & issued yesterday, NOT showing in account today! :(

    I've tried calling 3 times, emailing your company and even discussing this matter with your support team via Twitter, and have had different answers, so I thought that I'd try here.
    I looked at my My Best Buy account today, and saw that I only had 31 points. Apperantly, yesterday I had been issued my $10 rewards certificate, yet it's NOT showing on my account! Your support team on Twitter said that it should've been there automatically, yet I was told by 3 agents over the phone that I had to wait at least 24 hours or longer for it to show up. I was awarded a tiny customer satisfaction reward (1 point).
    I was going to use the certificate + 2 mostly used gift cards towards a movie that just came out and is now on sale, but now I can't buy it from your store until the certificate is issued.
    Please resolve this matter very soon so I can buy my movie!
    Thank you in advance for your quick reply!

    Hello FS81,
    I hope you have enjoyed your Wednesday so far.
    I 100% agree with you that it should not be that difficult to get a straight answer about the status of your $10 certificate.  As you may read in other threads on the forum, a certificate will usually post immediately; however, there are times where it may take a little longer, but it should not take more than 24 hours.  Please feel free to send me a private message with the information below if you still cannot access your certificate after 24 hours and I will see what I can do to help.  A private message can be sent by clicking on the blue button in my signature labeled "Private Message."
    Name
    Phone #
    Email address
    My Best Buy™ ID #
    Thank you for taking the time to post to the forum and for being a My Best Buy™ member.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • Output type of purchase order as email

    Hi Experts,                 I want to configure the output type of my purchase order as  email also so that when i can save it as a pdf file. kindly tell me the procedure of configuring it with path in SPRO. Thanks Harmandeep

  • How to ungroup a set of pictures in playback on powershot sx60

    I often hit the wrong button an a group of pictures I shot get into group set playback.  I cannot find in the manual how to ungroup these pictures - which then stops me from magnifying a image in playback to check it out.  Is there a way? Rose Solved

  • Configuration Error 1 avec Acrobat Pro XI

    Bonjour, J'ai supprimé toute ma série CS6 au profit de CC et j'avais également supprimé Acrobat XI Pro pour le réinstaller car j'avais des alertes d'update pour Acrobat qui venez régulièrement me déranger alors que le cloud était à jour... Mais à ce

  • XAMPP to Apache + ProFTP

    I recently had to reinstall arch linux due to swapping out a dying hard drive. I took the opportunity to make some changes I'd considered before (eg. switching window managers). One of the things I decided to do differently was set up an actual LAMP

  • Accessing Forte method information

    Good afternoon Forte gurus, Earlier this morning there was some dialog regarding how to examine Forte classes given a project from a workspace. I would like to pose my own question for this topic, "how does one know if a method from a class overrides