Tab delimition for the blank values

Hi experts,
I need to generate the tab delimited file.
I m using FCC for the same.
if there are 3 fields in my structure and values are coming for all, then its working fine, but if any of the blank value is coming as blank, the its giving prb.
I am facing the below problem.
if  Input is - Jack  Michael  Richard
output file is generated prorperly
if input is- Jack           Richard
then output is coming as - Jack  Richard 
But I want result as - Jack                  Richard
Please advise.
Thanks in advance.

Hi,
Try this mapping:
                                                                                InputField----
>
InputField --->
                       equalS  -
>ifThenElse
Constant[] --->                              Constant(with blank -
>
                                                      spaces equal to length)
-Supriya.

Similar Messages

  • Displaying blank value for the Rounding Value field in MM03 transaction

    Hello All,
    We are using BDC to create a material master record.Some users are not loading the rouding value in the MRP1 screen. The rounding value is stored in the MARC table which has the data type as QUAN. Thus when there is no value being passed it implicitly converts the blank value to 0.00. The users do not want the rounding value to be displayed as 0 when they view the material record using mm03. Kindly let me know if there is any way to display the rounding value as blank if no value is present.
    Thanks in Advance.
    Regards,
    Avinash Sai N S

    Hai siddharth,
    I have enabled the BADi HRPBSIN_ADDITIONAL_CHECKS to do validations for loans. Can u pls explain is there any FM or wat can be used to set default value for the field in portal.
    Pls give some suggestions,
    thnaks,
    Nalla B.

  • How can I reduce the selection for the characteristics value in a BW query

    Good morning,
    I need to find out how I can reduce the selection for the characteristics values in a BW query.
    In a BW query I have a characteristic "Due month".
    The characteristic values shown in the query are from 01.2001->03.2007. I would like to reduce it to the last 2 years,in the query view,  without deleting the data for the other years in the cube.
    Do you know how this can be done?
    Thank you in advance for your feedback.
    Kind regards,
    Linda Verding
    Staff Consultant - CSC

    hi,
    First thing you have to do is check the report how the data is being restricted only to those months.
    1) one it can be variable in which the code is written for that to populate for last few years.
    or else it must have been hardcoded for these months.
    Go into your report and underneath the characteristicsCALMONTH there must be an variable or hardcoding.
    You need to change this here in the report.
    You dont have to delete anything there.
    Regards, Siva

  • OAK3 error message - Specifications for the mean value methods incorrectly

    Hello experts,
    After golive of sap ECC system of our client, when the auditors check the consistency of depreciaion areas in transaction OAK3, the error message is appearing under the depreciation area 01 as "Specifications for the mean value methods incorrectly defined". Can anybody throw some light on how to encounter this error message?
    Thanks

    Hi,
    1) Usually, the reason why the error occurs is that you have no area defined in the chart of depreciation.
    2) Also please check the attached note 847289.     
    3) Please also run OIB5 and check if capitalization version is assigned to depreciation area 01                                            
    If you use capitalization versions it is necessary to have a depreciation area with area type 07 (Cost-acc. valuation) which     
    get the whole amounts.                                                                               
    The depreciation area which takes the values to 100 % must have the following features:                                                 
    => The currency of the depreciation area should have the currency of the controlling area                                          
    => The depreciation area should have the depreciation area type "07 Cost-acc. valuation"                                         
    => The area should not have a capitalization version       
    regards Bernhard

  • Release By two Users for the  same Value

    Friends
    I have an existing PO rel. strategy where the range is 1-10000USD  . This is currently released by one user. Now due to business requirement  client wants to introduce one additional user to release the PO as well for the same  value range.
    In a nutshell for the value range  USD 1-10000 , There will be two approvers with two different rel. codes. How do I achieve this?
    Thanks
    samuel

    Dear,
    Check this : Release Procudure for Purchase Order
    Hope Helpful to your requirement.
    Regards,
    Syed Hussain.

  • Default the blank value for MessageChoice

    Hi,
    I have created a Message Choice Bean and I require to have a blank value as the first value followed by the original values. How to achieve this ?
    I have also tried setting through personalization 'Add Blank Value' to 'true' and also tried with the function 'setAllowBlankValue(true)' for the messagechoice bean. But its not working.
    Please help me by giving the valuable suggestions to achieve the above.
    With Thanks,
    Thiyagarajan

    The only possible case of this happening, is you might have made required property as true, which removes blank value because if value is required in messagechoiceebean, then blank alue can not be included.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to create a graph for the exact values in pivot table

    hi all,
    how can i create a graph exactly that shows pivoted values. i created one pivot table and deleted the table view. when i am creating the graph it is not showing the graph for pivot table values.

    for that you need to edit the pivot table properties and then select graph pivot results tab in the top middle .. hope this helps

  • How to check a parameter for legitimate blank value?

    Hi,
    I have a parameter with a drop down for a standard field from table BSEG. There are 3 possible values in the drop down, i.e. blank, 1, or, C.
    If the user enters '1' or 'C' there is no problem I can use this value in my code, i.e. I can select from BSEG where this value is a '1' or a 'C'.
    How can I differentiate between an initial value in the parameter and a ' ', i.e. if the user doesn't select a value in this parameter the I need to get all BSEG records, but if the user selects ' ' for this parameter I need to get all values from BSEG where this field = ' '.

    Hi,
    Use the below code.
    parameters: p_list as listbox visible length 20.
    initialization.
    type-pools vrm.
    data: v_id type vrm_id,
          i_list type vrm_values,
          wa_list like line of i_list.
    v_id = 'P_LIST'.
    wa_list-key = '1'.
    wa_list-text = '1'.
    append wa_list to i_list.
    wa_list-key = 'C'.
    wa_list-text = 'C'.
    append wa_list to i_list.
    wa_list-key = ''.
    wa_list-text = ''.
    append wa_list to i_list.
    *p_list = '3'.  "this is to set the default value of the list box.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        id                    = v_id
        values                = i_list
    EXCEPTIONS
       ID_ILLEGAL_NAME       = 1
       OTHERS                = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    start-of-selection.
    if not p_list is initial.
    select * from BSEG into table itab where field = p_list.
    else.
    select * from BSEG into table itab where field is initial.
    endif.

  • Help for ----convertion of tab-delimited for download to UNIX

    hi,everyone, I have one question for your kind advice.
    I have managed to find a way to download an tab-delimited file to UNIX.
    which need to define the TAB as hex number.
    I think the tab-delimited should be defined as "23" ,but the outbound is just a
    "#" . and if I changed it to '09', I can get the correct result such as 123&#8594;123
    here, &#8594;is an tab-delimited sign.
    so could you kindly explain the reason,and How can I get the "correct hex number " 09 ?
    hope you  can understand my fuzzy explaination....
    thanks

    dear Atish
    thanks a lot for your kind advice....
    I tried this way and it  works well.
    Though I stilll want to know the reason ...anyone can explain it?
    thanks

  • How to find average for non blank values

    I need to calculate avarage for each restricted key figures. There are some blank values in this restricted key figures. Now I need to sumup and divide by non blank count. Do you know how to do it? How to count non blnak values and find avereage.
    Thanks,
    Phani

    In the properties of Key figure used in column/row, Calculations section, you can maintain calculation type for result as well as single value. There is "Average of all values not equal 0" option is available.
    Rgds,
    Vikram.
    Edited by: Vikram Kate on May 22, 2008 11:23 AM

  • What is the file extension for photoshop for the blanks following  the period in "photoshop,___"?    I have  an older desktop which includes older photoshop files which I have asked a technician to extract for me.  He asks for the extension.  I can't

    I ned the extension for the photoshop program, that is, the letters following the period as shown by the blanks in this:  "photoshop.____"   I cannot find the extension in my laptop.  The photoshop program is a couple of years old and my files are in a desktop out of use for a couple years.  I brought the desktop to a technician, asking him to extract the photos.  He asks me for the file extension.

    If you using Windows you can use the control panel Folder options or from Windows File explorer menu tools>Folder options view tab to change what Microsoft hide on you.  Have windows display extension. Apple hide information from users also.

  • Is it possible to store a multiple indexes for the same value extractor?

    I ran into a situation where there were different queries that I was interested in doing that might have benefitted from having several indexes, sorted differently, but for the same ValueExtractor() instance.
    Is this good practice, is it recommended, and is there a clean way to do it? It seemed like the only way I could logically "trick" the system into it would be passing some sort of "query type" constant into the ValueExtractor when it was created, and then making the equals and hashCode() methods on the ValueExtractor delegate to the constant for equality, but this seemed like a massive hack.

    Hi Kris,
    First, try without each value extractor and see how the different queries compare in performance. You may find that you need only one. If you find otherwise, please let us know because it may indicate a good area for additional optimizations.
    Second, you are correct that the value extractor is the key of the index, and thus to have two indexes on the same value, you will need two different value extractors (i.e. the hashcode/equals comment you made.)
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Coherence: Easily share live data across a cluster!

  • Creation of logic group - any limitation for the Criteria Value Field?

    I am trying to create simple logic groups in FDM (version 11.1.1.3 and 11.1.2.1). However, an error message displayed in the information bar.
    Error: Error adding new record.
    Detail: Data access error.
    I clicked the "Add" button and created a logic group which contains *1,520* non-sequential source accounts in the Criteria Value Field (with In operator).
    I have separated these source accounts with a comma and no spaces in between them. (Note: Operator = x, Value/Exp = 1, Seq = 0) I updated the grid. Then, the error message was displayed and the logic group creation was failed.
    And then, I created a new logic group which contains only *100* non-sequential source accounts in the Criteria Value Field (with In operator).
    I also separated them with a comma, no spaces and same setting. I updated the grid. And the logic group was added successfully.
    Each source account contains 10 characters (alphabet and/or number).
    I want to ask:
    1. Is there any limitation in specifying source accounts (i.e.. no more than certain number of source accounts for each logic group) in the Criteria Value Field when creating simple logic group?
    2. I am adding these logic groups by clicking the "Add" button one by one, is there faster way to do it (i.e.. upload an excel or csv file or source accounts specified)?
    Thank you very much!

    Thank you Expert for your reply!
    I would like to ask about loading the Logic Accounts with the template.
    As instructed, I exported the excel out for the template format and updated the template with new Logic Accounts. Then, I imported the excel file in the "Import XLS" section under Tools. The excel file was uploaded successfully. (Note: I am using excel 2010 and saved it as .xls file)
    However, there is no changes in the Logic Accounts and seem no updates was made.
    I want to ask:
    1. Did I import the excel at the right location (i.e. "Import XLS" section under Tools)?
    2. Is there anything else I need to do after the file has been imported (i.e. delete the existing logic accounts or click another button(?) for this change) so the new list of logic accounts would become effective?
    I would like to use excel to maintain my list of logic accounts for better control in the future.
    Thanks in advance!

  • I cant open new tabs by clicking the blank area next to the tabs

    I used to be able to simply double click on the blank space next to currently open tabs (not just the little plus sigh) to open an new tab. Since yesterday I can no longer do this. I am running version 7.0.1. I don't know if this happened at the same time an update did. If this is an error, how do I fix it? If this was caused by an update, how to I change it back? It's very frustrating to have to click on that small little box to open a tab!

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.

  • Had a Search Criteria and the result as table in header.Wanted to bind the result table to bean for the key value access

      Had Search Criteria and the result is displayed in the table in a panel header .  I want to get the selected  row value and parse the value to next Vo in next page for a bind variable . So i need to handle the  tbale value by biniding to the bean , but there was no option to bind the table for a bean.So how can i get the value selected .
    Regards,
    K M Krishna.

    First of all tell us your jdev version, please.
    to get to the selected row you don't need to bind the table to a managed bean. You can e.g. drag the needed attributes from the VO onto the page and drop them as inputText components. the Framework then generated the attribute bindings and sets the values of the current row to them. As you don't really need the inputText components switch to source mode (!this is essential!) and remove them. This will remove the visual component but the attribute bindings are kept.
    Know you can access the values via their EL or like you get the value from an attribute via it's binding.
    Timo

Maybe you are looking for

  • Adobe Reader will not open PDF in browser simple answer.

    I just had this problem and was able to work through it with the help of tech support from TD Ameritrade.  The fix is simple so read on.  After uninstalling and reinstalling all things adobe and trying other recommendations on these forums I was stum

  • No signal to external Display/LCD-TV

    I own a Macbook Air 13" (Late 2010) and used to connect it via Mini-Display-Port to HDMI-Cable to my LG 37" LCD TV. While on Snow Leopard everything worked fine. Now I upgraded to Lion and I am not able to get a signal to my TV. The MacBook Air lists

  • Which av cable do I use to hook up my ipod nano 3g to my stereo?

    Do I use the composite or component? Help!

  • Unable to update design in InCopy

    Hello All, I am running InDesign CS5 on a mac, and my copy team has InCopy CS5 on their PCs. We are working on a layout that had elements on the page that were not made into assignments and not intended for the copy team to edit. After a round with t

  • How can you downgrade from ios 7.1.2 to 6.1.3

    hello everyone can you please help me i need to downgrade from ios 7.1.2 to ios6.1.3 because my ipad dosent work realy well with it can you plese help me