How to move last roles to first

Hi,
In EP portal one user having 50 roles.
for accessing 30th(super admin) role need to scroll and click the role. Now I need to move 30 th role to first.
How to possible this without removing and adding once again.
Thanks
Polaka
Edited by: polaka123 on Nov 20, 2010 10:17 AM

hi polaka,
search for Sort priority for roles in SDN, its in between 0 to 100, and default 100,
the minimum sort priority value object comes first. check this help link for more[ HELP|http://help.sap.com/saphelp_nwce711core/helpdata/en/92/3e703e632c7937e10000000a114084/frameset.htm]
regards
Mahesh
Edited by: maheshchandra.lanco on Nov 22, 2010 11:27 AM

Similar Messages

  • How to select last year's first day

    Hi friends,
    How to get the last year's first day using sysdate as on sysdate
    this gives the current year's start date
    I need last year's start date like 01-jan-2010 as on sysdate
    thanks

    Another:
    SQL> select trunc(sysdate-365.25,'YYYY') from dual;
    TRUNC(SYSDATE-365.25
    01-JAN-2010 00:00:00Note: the .25 accounts for this query being run on the last day of a leap year e.g.
    SQL> select trunc(date '2012-12-31'-365.25,'YYYY') from dual;
    TRUNC(DATE'2012-12-3
    01-JAN-2011 00:00:00Edit: Note, this still isn't completely accurate and could give a wrong result. Better solution is to use the add_months function.
    Edited by: BluShadow on 06-Apr-2011 11:55

  • How to select last record or first record value in a formula?

    Post Author: d111
    CA Forum: General
    I am using a query in a report that in addition to other columns, has a column of month labels like:
    There are no unique identifiers or sequence fields that can be used.   There is only 4 columns: the label and 3 percent columns.
    Jan07Feb07Mar07Apr07etc.
    I would like to show the range of months I am using in a label on the report showing the last and first records value. like: "Jan07 to Jun07".
    I can not see how to use the functions maximun or minimum since it sorts the months alphabetically.
    I would like to use a formula to just grab the first and last record.  I can't seem to find any information on this anywhere.
    Please advise and thanks.

    Post Author: bettername
    CA Forum: General
    Hmm... I suspect what you actually want is the minimum and maximum dates in the report, rather than the first and last records (even if they do happen to come out in date order). So you need to convert the text dates to real ones, and then pick the min/max values.
    If so, try these:
    Formula "ConvertToDate" (for details section) which converts your text field into a real date - suppress it once placed!:
    //Since you have 2-digit years, this conversion assumes that all your dates are >=year 2000
    numbervar the_month;if left({YourTable.YourField},3) = "Jan" then the_month:=1 elseif left({YourTable.YourField},3) = "Feb" then the_month:=2 elseif left({YourTable.YourField},3) = "Mar" then the_month:=3 elseif left({YourTable.YourField},3) = "Apr" then the_month:=4 else
    //...etc etc you fill in the rest!
    if left({YourTable.YourField},3) = "Dec" then the_month:=12;
    date(tonumber("20"+right({YourTable.YourField},2)), the_month, 1);
    Formula "Show Date Range" (for anywhere on the report) to show the min/max values of the dates;
    totext (minimum({@ConvertToDate})) + " to "+totext(maximum({@ConvertToDate}))
    If, however, you really just want the first and last records, and you want it at the top of your report as a title (eg: in the Report Header), then I can't see how it can be done without using a subreport that looks at the same dataset, but only displays the first and last records (using the formulas below).
    Stick this in the details section, and call it "HoldRecords" and suppress it:
    whileprintingrecords;stringvar first;stringvar last;if recordnumber = 1 then first:={YourTable.YourField}; //if its the first record that crystal is displaying, store it in a variableif recordnumber = count({YourTable.YourField}) then last :={YourTable.YourField} //and again, but for the last record
    Now create another formula, and put it into the report footer:
    evaluateafter({@HoldRecords});stringvar first" to "stringvar last //will display "Jan07 to Apr07"
    NOTE:  if you have the report ordered by anything, this'll throw the record numbering, and therefore the first and last records, therefore... urgh.
    Hope this helps...

  • T-SQL how to set last row as first

    Hi,
    I have the following query:
    SELECT leveltmp, 'Level ' + CAST( leveltmp as varchar(5)) + ' (' +
    STUFF((SELECT top(3) ', '+ BES.Name
    FROM BESTB BES
    WHERE BES.leveltmp = BE.leveltmp
    AND BESId=2
    FOR XML PATH('')), 1, 1, '') + ',...)' as 'level'
    FROM BESTB as BE
    WHERE BEId = 2
    GROUP BY leveltmp
    ORDER BY 1
    and I get the following results:
    1    Level 1 ( TestFirstLvl1, TestFirstLvl2, TestFirstLvl3,...)
    2    Level 2 ( TestSecondLvl1, TestSecondLvl2, TestSecondLvl3,...)
    3    Level 3 ( TestThirdLvl1, TestThirdLvl2, TestThirdLvl3,...)
    4    Level 4 ( TestFourthLvl1, TestFourthLvl2, TestFourthLvl3,...)
    5    Level 5 ( TestFifthLvl1,...)
    However, I need the last one always to be the first one, but the others to remain as they are. I need my order to be 5,1,2,3,4 instead of 1,2,3,4,5.
    So basically I need to get the following results:
    1    Level 1 ( TestFifthLvl1,...)
    2    Level 2 ( TestFirstLvl1, TestFirstLvl2, TestFirstLvl3,...)
    3    Level 3 ( TestSecondLvl1, TestSecondLvl2, TestSecondLvl3,...)
    4    Level 4 ( TestThirdLvl1, TestThirdLvl2, TestThirdLvl3,...)
    5    Level 5 ( TestFourthLvl1, TestFourthLvl2, TestFourthLvl3,...)
    Any idea on how to achieve this?
    Thanks

    create table #t (c char(1))
    insert into #t values ('a'),('b'),('c'),('d')
    select * from #t order by c ---now we need d to be first charachter 
    declare @c char(1)=(select top 1 c from #t order by c desc)
    select * from #t order by case when c =@c then '1' else c end
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to move worker roles to VM?

    I've developed an app that has 3 worker roles and a web role.  The client has decided that they want to put this on a VM.  I understand how to handle the web role but I am unclear how I convert the worker roles.  I've searched but I can't
    find anything that directly guides me on what's needed.  Does anyone know of a link that would show me how to convert over?

    The easiest way to develop a Windows Service in my opinion is using
    Topshelf.
    You can convert your Worker Role code across pretty easily by
    calling the Run code from the WhenStarted event, the OnStop code from the WhenStopped event and the OnStart code from the constructor of your service class.
    Alternatively, you can
    inherit the ServiceControl interface and implement the Start and Stop methods.
    Deploying the service is easy too. Simply get the built files from your console app (a Topshelf service is simply a console app) and
    invoke the app (e.g. PowerShell script) with the install parameter, then again with the start parameter.

  • How to move report to apper first in the InfoView folder?

    Hi,
    We are using BO XI R2. Users wants to display one of the reports first in the folder ( at the top of the list). Please help how to do it.
    Thanks!
    Inessa

    The only way I can think of is renaming your report.  Rigth-click the report and in Properties change its name.
    For example, instead of naming it: My Report, change its name to:
    01-My Report.
    This way you can make sure the report will show always on top since it seems InfoView shows everything in alphabetical order.
    Regards
    Erika

  • How to delete the line between the last point and first point?

    How to delete the line between the last point and first point? 
    I want to draw a curve many times, from first point to the end point. and redraw from first point to the end point.But I hope update point by point. but between the end point and the first point,  there is a line. How to delete the line?
    the code is:
    CNiReal64Vector plotData(50);
    m_graph.ChartLength = 50;
    //m_graph.ClearData();
    for (int j = 0; j < 2; j++)
           for (int i=0; i<50; i++)
                   plotData[i] = ((double)rand()/(double)RAND_MAX)*6 + 4;
                   m_graph.GetPlots().Item("Plot-1").ChartXY(i, plotData[i]);
                   Sleep(100);
    Attachments:
    20150605142608.png ‏31 KB

    Hi Kumar,
    I think you can just delete it in the sales order directly, if you are using make-to-order scenario, then there will be special stock left for the sales order as the production has been goods receipt, you need to use MM transaction move the stock to unrestricted use stock. If you are using make-to-stock scenario, there should be no further problem. If you are using assembly order, please try to reject the sales order item to see if it could fullfill your requirement.
    Regards,
    Rachel

  • I have purchased my first smart phone. iphone 5. I want to use sounds sent to me in text messages as ringtones but don't know how to move them over. Any help would be appreciated.

    I have purchased my first smart phone, an iphone 5.  I would like to use some of the sounds from text messages for ringtones but don't know how to move them over.   Any help would be appericated.

    I'm sorry, had you already pointed out the rules which stated that lines from 2 separate accounts were eligible??? I don't see anywhere in the advertisement specifically stating that lines from 2 separate accounts would be eligible, so THAT is not what's advertised, either.
    As far as I know Verizon's BOGO offers have ALWAYS been for lines on the same account. Possibly someone could chime in where they have received this offer on 2 separate accounts? The ONLY exception to this was someone getting the offer with 2 eligible lines on their account, reactivating the old phone on one of the lines and then giving one of the new phones to someone on another account.
    Sorry if you think simply because someone disagrees with you, they are being condescending. That is certainly not the case. Good luck.

  • How to move pics from camera role to photo stream?

    How to move pics from camera role to photo stream?

    before you fiddle with it you may want to back up your photos on your PC. This is how to move them from phone to PC.
    How to Transfer photos from HTC memory to PC
    1) From the phone: select: Menu>settings>connect to pc>as disk
    2) Attach phone to pc with usb cable
    3) From pc open: Computer>removable disk F>dcim>100media
    Note: you can also pull the mini sd card out of you phone and plug that directly into your computer. just make sure to unmount the disk through your settings options before you remove it from the phone.

  • How to get month last date and first date without FM's

    Hi Guru's,
       How can we get  month's first date and last date based on the date given in selection screen without FM's?Is it possible ?
    Like if i give 05-Oct-2008 in the selection screen, i should get the output as 01-Oct-2008 to 31-Oct-2008.Without FM's???
    Regards
    Rakesh.

    Hi Rakesh,
    You can implement this logic as follows:
    You can have two internal tables, one containing the days as numbered 31, 28, 31, and so on with the month number. This holds good if the year is a common year. Another internal table contains days as numbered 31, 29, 31 and so on with the month number. This year would be a leap year.
    An year can be calculated depending on the conditions:
    Say date is given as 20081008
    Concatenate 20081001 + 0(4) into l_date.
    Divide l_date by 4 and remainder should be equal to 0.
    Divide l_date by 400 and remainder should also be equal to 0.
    Then the dominical year will be a leap year.
    Now, if l_date divided by 100 and the remainder is 0 then the year is a common year.
    So depending on this populate the first date and last date from the respective internal table
    Regards,
    Sumalatha N.

  • HT3209 how long does a rented movie last? and can i download it  in my pc, then to my ipad and then back to my pc?

    how long does a rented movie last?
    when i rent the movie in my pc, can i put it into my ipad and then back to my pc?

    Yu can copy it to your iPad from your computer, but if you rent it directly on the iPad then you can't copy it off - from here :
    If you download a rented movie on your computer: You can transfer it to a device such as your Apple TV (1st generation), iPhone, iPad, or iPod if it’s a standard-definition film (movies in HD can only be watched on your computer, iPad, iPhone 4 or later, iPod touch (4th generation or later), or Apple TV). Once you move the movie from your computer to a device, the movie will disappear from your computer's iTunes library. You can move the movie between devices as many times as you wish during the rental period, but the movie can only exist on one device at a time.
    If you download a rented movie on your iPhone 4 or later, iPad, iPod touch (4th generation or later), or Apple TV: It is not transferable to any other device or computer.
    From when you rent a movie you have 30 days in which to watch it, but once you start watching it you have 48 hours to finish watching it (24 hours in the US) - you can watch it as many times as like within those 48 (or 24) hours.

  • Hi, I rented a movie last night. There was a power failure in my area and as a result I didn't manage to finish it. May I know how to resume watching today?

    Hi, I rented a movie last night. There was a power failure in my area and as a result I didn't manage to finish it. May I know how to resume watching today?

    CHWei,
    You may find a solution by reading: Cannot resume a movie rental using...: Apple Support Communities.

  • How do you make it print first page first and not the last page first?

    I have a HP Officejet Pro 8600. How do I make the first page print first and not the last page printing first?

    Hi,
    From the application used to print open the print dialog and click Oroperties or Preferences to access the Printing Preferences screen.
    From the Layout tab set Page Order as Back to Front, then the first page will be printed first.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to move workbooks from one role to another role

    Hi experts,
    I need few inputs from your side. I have a few workbooks in different roles, i need to move all workbooks into singel role.
    Let say role 1 has 3 workbooks and role 2 has 4 workbooks. Now i need to move the 7 workbooks in new role3. I have a role3.
    after moving the workbooks into role3, i need to delete the workbooks in role 1 &2.
    Can you please anybody give me the inputs. how to move the workbooks.
    another thing is i dont have authorization for PFCG. It is only for developmetn system.
    Thanks in adance.
    surendra

    Hi Surendra,
    The "Save as" option is the best solution (I guess the only solution) for your requirements. Once you have moved the workbooks new role you can delete the old ones.
    Bye
    Dinesh

  • HT1595 When watching a movie on Apple TV first generation, a black triangle will appear in the lower middle of the screen.   Anyone know how to resolve?

    When watching a movie on Apple TV first generation, a black triangle will appear in the lower middle of the screen.   Anyone know how to resolve?

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Apple TV: Basic troubleshooting
    http://support.apple.com/kb/ht1551
    -Griff W.

Maybe you are looking for

  • How do I organise iTunes purchases/content after moving abroad? Please help...

    Please can someone advise in simple terms, I am so confused! I have recently moved with my young family from the UK to the USA. We are hoping this will be a permanent move, but this is yet to be confirmed. We will be visiting the uk hopefully every y

  • Archiving Error - Cyclic Redundancy Check

    Hey there, My inbox is full again. I went to archive and I get the below message after the archive is finished: Error while archiving folder "Inbox" in store "[email protected]". The file C:\Users\XXX\AppData\Local\Microsoft\Outlook\[email protected]

  • ITunes for 64 bit Windows

    Is there a special version of iTunes with QuickTime Player for 64 bit Windows PCs?

  • Is model view(BD64) necessary for EDI

    is model view created using BD64 necessary for a EDI transactions? I have created a logical system, a RFC destination and a EDI File Port. After all this i am trying to push a material master data using BD10 to the file port. When i do that the syste

  • Display thumbnail preview for images in a Document Set

    I have a Document Set with Images in it.  I would like to show a thumbnail preview of the images in the view of the files in the document library.  I added the Thumbnail Preview column but it just shows a large File Icon.