What will be the Structure of itab created with "LIKE TABLE OF sy-ucomm"

Data fcode like table of sy-ucomm
The table thus created will have one column but it will not have any structure.
How can I write a code with this effect:
LOOP AT fcode.
  WRITE:/ fcode-????.
ENDLOOP.
This question is just out of my curiosity I undertsand that by altering the declaration like
Data begin of fcode occurs 0,
data ucomm like sy-ucomm,
end of fcode.
I will be able to name it. But out of the academic interest I want to know that without altering the decalation part can we do it

Hello Flora,
There are two points to be noted here -
1. the table you have created doesn't have a header line.
2. The table you have created doesn't have a "structure".
All internal tables declared with reference to a non-structural type / object have got only one field.
for example -
Data ITAB TYPE I OCCURS 0.
These internal tables have certain limitations. They cannot be displayed in an ALV Grid, for instance.
And since they do not have a <i>structure</i>, the hypen operator '-' doesn't really make sense. When you say SYST-UCOMM, you are referring to the field UCOMM in the structure SYST.
Hope that's clear.
Regards,
Anand Mandalika.

Similar Messages

  • What are the sources system will pick the document type while creating invo

    hi
    I would like to know how system will pickup the doucment type while creating invoice in vf01.
    i have taken off the fields  f1, f2, from the document type. in billing sub tab.  so  The moment when am creating billing system automatically displaying F2 invoice doucment creation.  What are the sources for this.
    thanks & Regards
    Rack129

    Hi,
    Hope you have maintained u2018Delivery relevant billing type F2u2019 and u2018Order relevant billing type F1u2019 in the billing tab of the Sales document type in VOV8.
    If you create delivery related billing, the system will pick F2. This is controlled in Item category (VOV7). Billing relevance in Business data of Item category decides whether this is delivery related or order related. u2018Au2019 for delivery related billing; u2018Bu2019 for order related billing and so on.
    Item category is determined by this combination: Sales document type + Item cat group + usage + higher level item cat.
    Regards,
    K Bharathi

  • HT5624 my child created a passcode for my i phone and he forgot that what will be the reset procedure

    my child created a passcode for my i phone and he forgot that what will be the reset procedure

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • I keep getting the message "the photo library was created with an unreleased version of iphoto.  I have reinstalled but still get the message. What do I need to do?

    I have had my iBook for years with iPhoto on and then suddenly today I get the message "The photo library was created with an unreleased version of iPhoto.  Please quit and upgrade this photo library by opening it in iPhoto 2 or iPhoto 4.  I reinstalled iPhoto but nothing has changed.  What do I need to do to get it working again?  Help!!

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.

  • What will be the peoplesoft query to calculate voluntary termination count and involuntary termination count? I am working on OBIA HR analytics workforce deployment reports and need to validate the reports

    what will be the peoplesoft query to calculate voluntary termination count and involuntary termination count? I am working on OBIA HR analytics workforce deployment reports and need to validate the reports. I also want to know the tables involved

    Hi Andrew,
    Part A:
    I've done some restating of the question, and distributed the calculations among several fields, not all of which need to be included on the visible layout. Other than formatting the Date fields and moving the 'Completed Date' field and its label, I've left this in the default "Layout 1" produced by AppleWorks.
    Field List:
    Priority: Popup menu with six items: 00, J, D, 1, 2, 3  Defaults to 00
    TL (time limit in months): Calculation:  CHOOSE('Priority',0,1,3,4,6,12)
    Received: Date. Option: Automatically insert today's date (ie. Date Record created) (may be edited)
    Target Date: Calculation:
    DATE(YEAR('Received')+INT(MONTH('Received')+'TL')/12,MOD(MONTH('Received')+'TL', 12),DAY('Received'))
    Remaining (Days): Calculation: INT('Target Date'+1-NOW())  (see revision below)
    Completed: Checkbox. Set default value to Unchecked.
    Completed Date: Date: Entered manually
    OnTarget: Calculation: IF('Completed',IF('Completed Date'<'Target Date',"On Target","Over"),IF(INT(NOW())>'Target Date',"Over","On Target"))
    The On Target field shows the current status of the case while still open, and the state on the closing date when it was closed.
    Having done that, I was unhappy with the Remaining field continuing to calculate an ever larger negative number after the case had been closed. Hence this revision below:
    Remaining: Calculation: IF('Completed','Target Date'-'Completed Date',INT('Target Date'+1-NOW()))
    Shows the number of days remaining while the case is open, the days remaining at completion if the case has been marked Completed and the completion date entered.
    Rsults (and some further formatting of the Layout) below.
    Part B:
    You will need Subsummary parts when sorted on Completed and on On Target. Fields can appear on  a Layout only once, so each subsummary part will need a separate Summary type field for each field to be summarized.
    Regards,
    Barry

  • What will be the Upper Limits for Performance Metrics for Alerting

    Hi,
    We are planning to monitor the Performance of Cloud Services hosted onto Azure through VisualStudioOnline [TFS].
    What will be the Upper limits for below metrics per cloud service hosted on Azure:-
    CPU Percentage
    Disk Read Bytes/Sec
    Disk Write Bytes/Sec
    Network In [Bytes/Sec]
    Network Out [Bytes/Sec]
    Thanks for the help.
    Regards, Subhash Konduru

    Hi,
     An alert rule enables you to monitor a Azure service based on a metric value. When the value of a specified metric violates the threshold assigned for a rule, the alert rule becomes active and registers an alert.
    To create an Alert Rule, you might want to check the below article
    https://msdn.microsoft.com/en-us/library/azure/dn306638.aspx
    To know more on the limits please follow the link
    http://azure.microsoft.com/en-in/documentation/articles/azure-subscription-service-limits/
    Hope this helps !
    Regards,
    Sowmya

  • What will be the immediate behavior of server once the model, msdb, tempdbs are corrupted?

    Hi,
    Can someone help me to get the below information.
    What will be the immediate behavior of server once the model, msdb, tempdbs are corrupted?

    Can someone help me to get the below information.
    What will be the immediate behavior of server once the model, msdb, tempdbs are corrupted?
    If any of Model or Tempdb is corrupted SQL Server would not come online.
    Tempdb is created from copy of model database so if model is corrupted tempdb wont be created and tempdb is not created SQL Server cannot come online.
    SQL Server can come online is msdb is corrupt but jobs and packages wont be accessible.
    There are various trace flag which can help you to bring Database *kind of online* if model or tempdb is corrupted
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • What will be the consequences of changing the apple ID on my iPad to a different apple ID on my iMac?

    Hi,
    I have an (iPad 2) and an iMac (2012). I have one apple ID used for both the itunes and appstore on the iPad, and on the iMac a different apple ID used for the appstore and itunes. What will be the consequences of changing my email ID on the ipad to the one used on the imac? I don't want to delete the iPad apple ID, just never use it again. I just want to work with 1 apple ID over the 2 devices.
    I have purchased apps on the iPad and other documents/movies/books etc and if I sync to the iMac will all that be deleted? How can I just use the one apple ID for all? Does it mean that every time I connect my iPad to the iMac that I have to login to itunes using the iPad apple ID? Maybe it is that simple I don't know.
    What will be the consequences of doing this and is it possible?
    Thanks.

    settings->itunes & app stores->click appleID and choose logout

  • HT204380 How can I make a face time call from one country to another( supporsing both parties using iphone 4s). What will be the caller charges. If there is no charges as we use wifi, will there be a charge till connecting the call?

    How can I make a Face Time call from one country to another( supporsing both parties using iphone 4s). What will be the caller charges. If there is no charges as we use wifi, will there be a charge till connecting the call?

    FaceTime is free to use. You will not be charged for using FaceTime.

  • As I can sometimes do, I did not read the directions before delving into LR.  Now I find my self with image history in LR on 2 or 3 of my HD's.  I would like to now consolidate it on one HD but fear in doing so I will lose the images I have created within

    As I can sometimes do, I did not read the directions before delving into LR.  Now I find my self with image history in LR on 2 or 3 of my HD's.  I would like to now consolidate it on one HD but fear in doing so I will lose the images I have created within LR.  Is there a tutorio or some other way to get me back on track with this application?

    Your image history (if I understand you properly) is stored in your catalog file, and nowhere else, and so it is only on a single drive.
    Do you mean you have edited photos on multiple drives? This isn't a problem for Lightroom at all, the software doesn't care, and you can leave things just the way they are. But if it bothers you for some reason, you can move the photos to a single drive if you want. In Lightroom select the desired photos or folders (it's easier to do this using Folders) and drag them to the desired drive.
    Alternative if you will be moving lots of folders: Adobe Lightroom - Find moved or missing files and folders

  • Iphone 5 Battery efficiency is bad.....What will be the cost of replacing a battery in the apple store..??

    what will be the cost of replacing a battery in the apple store..??

    Apple has a battery replacement program for some devices sold between Dec 12 and Jan 13.
    Check your device if it's eligible for this program or not https://www.apple.com/support/iphone5-battery/other_countries.html
    Besides, go to any App Store and ask them to run ADR test for your device and will see the battery life. If it seems fail or consumed then you should replace the battery. If seems pass, then restore your device if you think battery drains too fast.
    see the pricing Apple - Support - Service Answer Center
    choose the country from list and will see the all info upon service costs

  • What will be the impact if i change the G/L accounts in APP(FBZP) Configura

    Hi experts,
    we have a small requirement regarding Changing the new G/L accounts in APP(FBZP) in the place of old G/l accounts. But if we change the G/L accounts what will be the impact? Like wher and how will the impact  in reporting and other ares?
    Kindlly just give your valuable feed back?
    Thannk&Regards,
    dudekula

    Hi Dudekula,
    yes, i think if you have implemented EBS it might have an impact. Like you should adjust you EBS config with the new bank clearing G/L accounts. Moreover me must also come out with a plan how to clear the outstanding items in the old bank clearing accounts, specially if you are issuing checks which can be cleared anytime in the next few days to few months.
    Thanks
    Ron

  • What will be the form of file protocol (file://) in firefox?? Using file://servername/foldername , I am uable to open a folder. But it was supporting in other browsers. Need a prompt solution of that issue.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/918107]]</blockquote>
    what will be the form of file protocol (file://) in firefox?? Using file://servername/foldername , I am uable to open a folder. But it was supporting in other browsers. Need a prompt solution of that issue.
    I have used following code snippets:
    <a href="file://PC2/c$">open folder </a>
    It is used to open C:/. But it is not working in other browser except Mozilla.
    Need a solution as soon as possible...

    Hi,
    Please try '''file://///servername/sharename/''' or '''\\servername\sharename'''

  • HT4597 what will be the new alternatives for iWeb publishing,  Idisk & photo gallery ?

    what will be the new alternatives for iWeb publishing,  Idisk & photo gallery ?

    Thanks for the reply that there will be 3rd party support.
    One of the main reasons why I went from PC to Mac was because of all these cool features.
    Am dissapointed to see them leave.  ( Iweb, Photogallery, Idisk... )

  • User Exit that will allow the SAP program to create DN, but not create IDO

    Hi all,
    The requirement is when we select 1 PO in VL10g transaction and click the u201CBackgroundu201D button, the user exit will allow the SAP program to create Delivery Number, but not create IDOC for the Delivery Number to send it to warehouse system.  Also the created Delivery Number must be in changeable mode in ECC system .I need to find any exit to make the DN table field LIKP-VLSTK not to be u201CBu201D (distributed).  The B will make DN not changeable in ECC system which is hard coded value in standard program. so the DN should be changeable.
    Please suggest me the User Exit name which serves my purpose.
    Thanks in advance
    Latha.

    Welcome to SCN!
    Here is some code that will allow you to find exits and BADIS on your own:
    [Code To Find BAdi|https://wiki.sdn.sap.com/wiki/display/ABAP/CodeToFind+BAdi]
    Rob

Maybe you are looking for