ME2N in ECC5.0 - first two fields brings its field name in place of text

Hi,
    In our ECC5.0 system in T.code:ME2N system brings field names of first two fields in place of its short text.
That is in place of 'Pur.Doc. No.' it brings 'EN_EBELN'
and in place of 'Pur. Org' it brings 'EN_EKORG'
other than this rest of the fields are bringing its short text. Problem is only with this two fields.
Kind Regards,
Sankar.K

Check the OSS note because we have same ECC 5.0 bbut we don't have problems for ME2N
1008743

Similar Messages

  • How can I pull info into a report using just the first two characters of that field?

    I am trying to pull a total cost based upon locations in a particular area(s). Can I get the formula to just do this based on the first two characters of that field?
    Here is what I have so far:
    if {PACKED.LOCATIONS.NEXT OPERATION} = ["xx"] THEN {Job.Total_Price}
    Packed locations is a table I'm pulling from and the column I want just the first two digits is the the Next operation. Once this meets the "xx" (whatever location) then give me the total price from the Job table.
    This works for one or two orders, but then blows up when I do 10 or so.

    Hi Steve, assuming that Next Operation is a string field...
    Create a new formula and place it in the field where you see the {Job.Total_Price} field (Detail or Group depending on your report) with the formula:
    whileprintingrecords;
    global numbervar TotalValue;
    if len({? Replace me}) <= len({PACKED.LOCATIONS.NEXT OPERATION}) then(
    if left(ucase({PACKED.LOCATIONS.NEXT OPERATION}),len({? Replace me})) = ucase({? Replace me}) then
    TotalValue := TotalValue + {Job.Total_Price}
    TotalValue;
    You can go ahead and suppress that field.
    Create a new formula to place where you want to view the summary using the formula:
    whileprintingrecords;
    global numbervar TotalValue;
    This method allows for a higher degree of flexibility and you can search for the first x characters of that field instead of only the first 2 characters

  • When I run the cursor over a template it shows several pages but when i select the document it only brings up the first two pages to edit. How do I see them all?

    When I run the cursor over a template it shows several pages but when i select the document it only brings up the first two pages to edit. How do I see them all?

    Skimming the templates in the Template Chooser shows you all of the pages available in the template once you open it. You can insert the one(s) you want, even more than one of any of them. Most users don't want or need all of the different pages, especially when they start the document.

  • Removal of first two char  zero's from field .

    As i am having field BKPF-BELNR  of internal table whose value is :0000000010
    BKPF-BELNR = 0000000010
    i have to remove first two zero from left and append 'CE' and
    result like this : 'CE00000010'
    as i have tried shift field remove leading zeros . it doesn't work .

    Hi, if lv_belnr = '1000000000' then you get 1CE00000
    I would change it to
    replace '00' in lv_belnr(2) with 'CE'.
    replace regex '^00(?=\d{8}$)' in lv_belnr with 'CE'. 
    uffff it's possible in abap??

  • Indent first two lines of paragraph?

    Hello,
    I want to have an indent on the first two lines of my paragraph, how do I make this happen? I doesn't seem to be possible.
    The only way I know of is to manually indent the second line. But as you can imagine that's not a very efficient way if this happens over 200 hundred times
    PS: I use Indesign CS 5.5
    Thanks,
    Hamid

    I didn't realize that the "A" in your screenshot was part of your layout (I thought it might be part of your example). Another not-so-elegant solution would be as follows: Starting with what you have…
    …which are paragraphs with initial letters and tabs, create a rectangle shape with no fill or stroke, and give it some text wrap.
    Select the rectangle, cut it, go to the text frame, delete the first tab and paste the rectangle inline between the letter and the first bit of the paragraph.
    Now, select the inline object with the selection tool and drag it down until the text wrap causes the second line to indent.
    Place the text cursor between the first bit of text (Cus, in my example) and hit the left arrow key while holding the shift key to select only the inline object. Then copy it to the clipboard. If you then use find/change to look for a tab ^t and in the replace field, click on the @ symbol to bring up the fly-out menu and select Other>Clipboard Contents, Formatted, you can insert the object in place of all of the other tabs, and it will look like this:
    …or like this (in Preview mode):

  • Export option in ALV report downloades first two columns blank

    Hi ,
    Before posting this query I searched the solution in SDN but I did't find the solution.
    My problem is  After displaying report in ALV format ,if I press Export --> Local file --->spreadsheet ;  file will downloaded to excel sheet but first two columns(only heading no data ) will be blank  and next two columns with proper data.
    I checked field catalog defination it seems to be ok,  any other mistake ?
    Please suggest.
    Narayan

    Hi
    It's the option you have in the path System->List->Save->Local file
    I means it's the standard option to export an abap list into a local file, so you should try this path too and check if the resul it's the same
    I think you should choose  Export --->spreadsheet: here before saving the file an excel document will be open
    Max

  • How to remove first two headerlines while appending files

    Hi,
    Currently the requirement is client only needs the file name without any time stamp or counter. They do not want to overwrite the records.
    They need the csv file structure as:
    Customer
    Custnum,Custname
    123,ABC
    While I am using append, it is also appending the first two header lines.
    Can you please suggest how to append without headers.

    Hi Swapna
    One option is of course to have the flag in the source structure so that you can identify whether it is first run or not. But if there is no such flag in source structure then the only possible solution will be done
    based on a look up.
    You can perform the same in java mapping using a hash table which will be updated with the file name in its first run and in the next run you will check whether the file name exists in the has table or not.Depending on that you have to pass the header value.
    Next solution can be maintaining a table in ABAP and perform a RFC look up in message mapping.
    When the file arrives, its will check whether the name is already there in the table or not. If the file not exists, then it will insert the file name in the table and return true. Based on this you will pass the header names.
    When the next file will arrive with the same name , The look up will find that file has already present in the table so it will return false and no header information will be sent. Only data will be sent.

  • How to capture first two digit in a number

    Hi,
    I have numbers with differeent lenth in a variable How to capture first two digit??
    Thanks.

    Hi,
    We can achieve that using the following methods:
    DATA : loc_1  type string,
                loc_2(2) type c.
    loc_1 = '123423428340923990'.
    loc_2 = loc_1+0(2).
    Here you will get only the first two digits.
    You can use move statement also.
    MOVE LOC_1(2) TO loc_2.
    If you are having mixed string with characters and digits mixed together i.e. like this 'test01test03sample01'.
    You can so that using this method.
    data : lv_length type I.
    loc_1 = 'test01test03sample0'.
    LV_LENGTH = STRLEN( loc_1 ).
      DO LV_LENGTH TIMES.
    *&-- Read from first string validing the numeric fields and move your first two digits to the required variable --&*
      ENDDO.
    Hope it will be useful.
    Regards,
    Sakthi
    Edited by: Sakthi Saravanan C on Oct 8, 2010 6:45 PM

  • Only the first two episodes showing

    When I do a search on my podcast in the iTunes Store, the show comes up fine but only the first two episodes are listed. When I click on the show image and go to the show page only those two show up, all four of the episodes are displayed in the other locations that follow the feed.
    Does anyone know why this would happen?

    Actually its really strange, the two missing episodes have been up for a while ( the most recent as of 3 days ago, the older about 12 days) and they never showed up. On a whim I decided to try to resubmit my feed address thinking that maybe I had giving it the wrong one by accident and was given the response that the feed was already taken. When I canceled out of it the new episodes showed up in iTunes. I don't know how but this seems to have prompted the system to recheck my feed and recognize that there were new items available.
    Anyone know why this might be the case? Also, when I view it from the search panel only the first two episodes appear, when you open it by clicking on the image of out logo it shows all four. Any ideas on that? The podcast is called 3 Wise Woodies if you want to see what I mean about how it displays the episodes.
    Thanks for you help.

  • TS3274 Email display problem: My email only display the list of emails and a preview (first two lines of the body of the mail). If one click on the message it only shows the heading on the right hand side of the screen, but not the content.

    My email only display the list of mails in my in box with a preview of the first two lines of the body of the message. When one clicks on the message to open it, only the header is displayed in the right hand side of the screen - the actual message is missing. This happens on older mail previously downloaded that use to work properly as well. Any idea how to fix this?

    Try closing the Mail app completely and see if it works properly when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How do I take two separate non numeric fields in a acrobat form and combine the data to display in a third separate field?

    How do I take two separate non numeric fields in a acrobat form and combine the data to display in a third separate field?

    You have to use custom JavScripting to concatenate the first 2 fields. You cannot use the first 2 calculation options because they force the values of the fields to a numeric value or ignore string values.
    Possible scripts for the 3rd field are:
    event.value = this.getField("Text1").valueAsString + " " + this.getField("Text2").valueAsString;
    or
    event.value = this.getField("Text1").valueAsString.concat( " ",  this.getField("Text2").valueAsString);
    If you do not want change the separator or not show the separator when on or the other field is empty, you will need to add more code to adjust for change.
    The above scripts will also concatenate number because the field values are read as strings and not numbers.
    There is also a generalized user written function to concatenate up to 3 fields with a separator that adjust for missing data.

  • How to display verfication fields in ITS mobile transactions

    Experts,
    We are working with ITS mobile for the first time.We are not sure how to display the verification feilds in ITS mobile transaction.I see these are displayed in backend. Since these verification fields are dynamic, how do we get them on ITS mobile transactions.Can anyone tell me how to do this.
    [How to display Verification fields in ITS mobile trnasactions.|How to display Verification fields in ITS mobile trnasactions.]
    Thanks in advance
    Edited by: RKsap193 on Apr 5, 2010 8:13 AM
    Edited by: RKsap193 on Apr 5, 2010 8:14 AM

    Hi Vinod,
    It does not show up unless with some coding. there must be some Java script or HTML code to write in the ITS transaction to enable these dynamic fields to dsiplay.We have issue with regard to how to display these fields when required.
    Thanks in advance
    Any suggestions from experts on how to control these verification fileds on ITS transactions.Also I can not control ITS RF screens upon scanning as to trigger SAVE + NEXT , or COPLETE like we do in the backend transactions.
    Edited by: RKsap193 on Apr 5, 2010 10:32 AM

  • Why does Final Cut Pro change my title's baseline after the first two titles when exporting a master file?

    Hey Guys,
    I want to use a Zoom title (Titles -> Build In/Out -> Zoom).  I only want the title, not a subtitle.  So I insert Zoom's everywhere, type in my stuff for Line 1, delete the contents of Line 2, format it (font, tracking, etc.).  Everything looks great in the Viewer.  I let it render, then export a Master – same as source.  I open the MOV, the first two titles are great.  Then every title thereafter looks like someone changed the position by 100 pixels south of its original location.
    Here's what I've done to troubleshoot it:
    Removed all Zoom's, inserted new ones, removed the contents of Line 2 and left Line 1 alone (i.e. it still reads "Title").  When I export, everything's fine.  The moment I change formatting or put in new copy in Line 1, same thing happens – every title changes position by 100 pixels down.
    Downloaded Digital Rebellion's Preference Manager, trashed pref's/
    I'm using a TTF with a bold type body only.  Figured I'd leave it at Gill Sans Bold.  Same thing happens as soon as I type something custom into Line 1.
    I had a text style saved and removed it.  (Which wasn't easy.  Solution here.)
    Has this ever happened to you?
    Thanks!

    Hey Jim,
    Thanks for the follow-up.  Here are some more details:
    OS - 10.8.2
    FCP X - 10.0.7
    I can't update either of these because of my Avid installation.
    Something else I didn't mention – this happens in a 4K project.  Notice how a default Zoom title looks:
    Lines 1 and 2 are almost stacked on top of each other.
    Here's my title style:
    Here's what the title looks after I apply the title style, modify Line 1, and remove the contents of Line 2:
    And here's how it looks in the exported master file MOV:
    Notice how it's pushed down?
    Then I decided to make a 720p project.  No more title problems.
    So if you have some 4K footage, Jim, give it a go.  Or if there's another 4K-er out there, try this and let me know.
    Thanks!

  • How to keep first two columns constant

    Hi
    IF i move the scroll bar till end i should get first two Columns constant....
    I mean i want to set Freez to First two columns in my report
    how to du this?
    Regards
    Smith

    HI
    Can you try below for your firtst column while filling the field catalog.
    wa_fieldcat_alv-fix_column = 'X'.
    it works.
    Thanks!

  • Populating a third column form the contents of lov result the first two

    Hi,
    i have a form with three fields.
    The first two fields are LOV. The third is a text field.
    I would like to compile a third field concatenating the results of these two. I would also check that the third field does not exceed the 30 digit value.
    e.g.
    first field --> country
    lov
    FRANCE d, FR r
    ITALY d, IT r
    second field --> town
    lov
    PARIS d, PRS r
    MILAN d, MI r
    third filed
    PARIS FRANCE ( max 30 char)
    MILAN ITALY
    Any help?
    Thanks in advance
    lukx
    Apex 4.1
    rdbms 11.2

    lukx,
    Yes, you would extend your PL/SQL to use the LOV return values as your look-up to return your display values.
    Looking back your original question; why doesn't your database yield Paris France just by selecting Paris with just one LOV? Maybe you need a table that relates a city to a country.
    Jeff

Maybe you are looking for

  • Load data from flat file to target table with scheduling in loader

    Hi All, I have requirement as follows. I need to load the data to the target table on every Saturday. My source file consists of dataof several sates.For every week i have to load one particular state data to target table. If first week I loaded AP d

  • Standard text not printing

    Hi all,   I am using /: INCLUDE ZTEST_TEXT OBJECT TEXT ID ST LANGUAGE EN   in my smart form. nothing is printing.What was the mistake in my statement?It gets printed if I use Include text and give same values.But why doesn't it print Standard text va

  • OSX Quicktime crash while editing large mov file

    Hi there, I just upgraded OSX today. I was trying to split the video (4GB mov format) using QuickTime player. It worked fine if I only split the video once. But if I wanted to split the video foor around 10 times, Quicktime just crashed and gave me t

  • Need Bootcamp 2.1 for Windows XP SP3

    I installed SP3 on my windows partition and it boots up but the drivers will not install. So I found out I need boot camp 2.1 to use SP3. I need 2.1 to install 2.2, and I need snow leopard to install 3.0. How do I fix this? How can I find Boot Camp 2

  • Part 2 of Access Manager FAQ on SAML

    SDN has published a second segment of the FAQ on SAML (versions 1.x and 2.x): resolving errors, enabling basic authentication, mapping the SAML 2.0 Authentication Context, differentiating between the Post Profile and the Artifact Profile. Have a look