How to create pf status

hi,
i want to create pf stastus for this one.
SET PF-STATUS 'ALV_STATUS_01' EXCLUDING RT_EXTAB.
tell me the steps 1 by 1.

hi,
In the below code double click on NEWSTATUS. it will give one pop-up window where in you can select required icons ..and hen activate it.
while callig function module REUSE_ALV_GRID_DISPLAY.
exporting.
i_callback_program = gd_repid.
set_pf_status = 'SET_PF_STATUS'.
importing.
t_outtab = itab.
exceptions.
form set_pf_status using rt_extab type slis_t_extab.
set pf-status 'NEWSTATUS'.
endform.
Reward with points if helpful.

Similar Messages

  • How to create a status window of Essbase scripts?

    Hello,
    I'm hoping someone can give me some insights on how to approach this requirement. I'm a Java Developer and am not really familiar with Essbase technology.
    The requirement is to create a status window of all running and queued calculations in Essbase. Users need to be able to start scripts as well and see its status.
    Like I mentioned, I'm a Java programmer and I think the direction is to create a java-application to do this. Is there any information/example how this could be done.
    Also, is there any technology that can be used to do this? Any plug-ins? I know that we use Excel as front-end for Essbase.
    Any help would be appreciated.
    Thank you,

    Hello -
    You may want to check with your essbase admin to show you the hyperion EAS/AAS interface and its functionalities to see if some of them may/could get covered there itself as per your requirement.
    Also, check the docs on the EAS/AAS here-
    Go to link - http://www.oracle.com/technology/documentation/epm.html
    Choose the View Library of the version that you are using.
    Click on the Essbase tab
    Choose/read the docs under - Oracle Essbase Administration Services
    Regards

  • How to create new status

    Hi Gurus
    We have requirement to create additional Status in Service Desk. Like
    Solved               
    Direct answered   
    Handed over
    Cancelled     
    Can any body tell me the Sap Standard matching status so that i can create new?
    Thanks in advance

    Hi Paul
    We already have the status what ever the procedure u said. But here i need the create ne status as per my requirement. My question is If i create a new status called cancelled what will be the match trans value.
    Thanks for you r help
    Bhaskar

  • How to create workflow-status = failed with ContentService?

    Hi!
    For test-purpose I need a workflow with the status "failed". How can I create one?
    greetings
    Verena

    Hi Robert
    May this help
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/d6/eddef503944dc6bbe8d81a2cec44e8/frameset.htm">Customising UWL tabs</a>
    Check the <a href="https://help.sap.com/javadocs/NW04S/current/uw/index.html">UWL API</a>
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/57/c223be82104792a15c2df11377b9ed/frameset.htm">Using UWL</a>
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0a/ad68c125ae496f8c04a25090bd2e3c/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3e/09df7f284f4fb9b50aaedf80652f4c/frameset.htmhttp://help.sap.com/saphelp_nw2004s/helpdata/en/36/dd4ad73c86412e81e9ce66eeb147e7/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/09/6d6b17b29b4eef83a553acaa52f668/frameset.htm
    Thanks
    Swathi

  • How to create a status bar in Forms 6i

    Hi,
    I am using Forms6i. I am calling a C application which takes some time to execute...So I would like to display a status bar in forms saying....Processing..Please Wait...
    And, once the control comes back to forms from the C program, this status should say complete.....
    Is there a way to do this ?..
    Please give some example /link for this
    thanks

    Hi
    Y cant u have a text item, ENABLED before the that C code with DEFAULT value 'Pleae wait....' and even u could have cursor style also set to BUSY.. then after process DISABLE the text item and bring back cursor style to DEFAULT.
    Regards

  • How to create Status in ALV reports?

    Hi experts,
                     I need to create a status in a alv report. but i am not getting how to create it. i have declared a variable type slis_formname. and appended the events with it. now how to create the status in form.answers will be rewarded.
    Thanks in advance,
    Ramana

    Hello Venkat,
    Copy the standard pf status of the ALV in SE41 and do the following.
      DATA: IT_EVENTS TYPE SLIS_T_EVENT,
            WA_EVENTS LIKE LINE OF IT_EVENTS.
      REFRESH: IT_EVENTS.
      CLEAR: WA_EVENTS,IT_EVENTS.
      WA_EVENTS-NAME = 'PF_STATUS_SET'.
      WA_EVENTS-FORM = 'STATUS'.
      APPEND WA_EVENTS TO IT_EVENTS .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM      = IT_VARIANT-REPORT
                I_CALLBACK_TOP_OF_PAGE  = 'TOP_OF_PAGE'
                I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
                IT_FIELDCAT             = IT_FIELDCAT
                I_SAVE                  = 'A'
                IS_VARIANT              = IT_VARIANT
                IT_SORT                 = IT_SORT
                IT_EVENTS               = IT_EVENTS
           TABLES
                T_OUTTAB                = G_T_OUTTAB
           EXCEPTIONS
                PROGRAM_ERROR           = 1
                OTHERS                  = 2.
          FORM status                                                   *
    FORM STATUS USING RT_EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'STANDARD' EXCLUDING RT_EXTAB.
    ENDFORM.
    If useful reward.
    Vasanth

  • Create Custom Status Field in Webi

    Hi everyone,
    I have to apply a Business Rule in my report and don't know how exactly go about it.
    (I'll be using Webi on top of Bex Query.)
    I have the filed called Material Availability Date, so based on this fields I need to create the status that would be recalculated every date for the same and new Sales Orders
    The rules is the following
    If Material Availability Date is LESSER THEN today's date THEN status is "In Future"
    If Material Availability Date is EQUAL today's date THEN status is "Today"
    If Material Availability Date is GREATER THEN today's date THEN status is "Outstanding"
    I don know how to compare the dates in Bex Designer, but how can I create this new column where the text "In Future" or "Today" or  "Outstanding" would appear?  Any Ideas.
    I thought on creating the Dates Variance Formula, so I'd compare the  Material Availability Date to System Date and I'd have positive or negative numbers or 0, but how to create the status text based on this values??
    Is it possible to do it in Webi?
    Thanks!

    Hi Kuatroka,
    you can create a variable in Webi where you compare the dates and output the required text. Then you can just add the column to the table and drag the variable to it.
    Or you can do the date comparisation in the query and provide the text as a field from the query.
    let me know if this helps,
    Rainer

  • Create Custom Status Field in Bex

    Hi everyone,
    I need a good advise on the following topic.
    I have to apply a Business Rule in my report and don't know how exactly go about it.
    I have the filed called Material Availability Date, so based on this fields I need to create the status that would be recalculated every date for the same and new Sales Orders
    The rules is the following
    If Material Availability Date is LESSER THEN today's date THEN status is "In Future"
    If Material Availability Date is EQUAL today's date THEN status is "Today"
    If Material Availability Date is GREATER THEN today's date THEN status is "Outstanding"
    I don know how to compare the dates in Bex Designer, but how can I create this new column where the text "In Future" or "Today" or  "Outstanding" would appear?  Any Ideas.
    I thought on creating the Dates Variance Formula, so I'd compare the  Material Availability Date to System Date and I'd have positive or negative numbers or 0, but how to create the status text based on this values??
    Is it possible to do it in Webi?
    Thanks!

    Hi,
    Bex cannot handle text.You can surely do the comparison and get result in numbers like 1 or 2 or 3
    Suppose if mat ava. dt is greater then system date then 1 or 2 like this.
    To do the same first thing you need to do is if you material availability date is char then convert into keyfigure using formula variable with replacement path .
    For system date you can use standard formula variable is available 0F_ADAY.This will be available under formula variable if in case its not there then you can install the same from business content.
    After that you can make a new formula and do the comparison between the two dates with the help of Boolean operators.
    As far as webi is concerned i cant say about it may be may not be not sure.
    Hope it helps.
    Regards,
    AL

  • How can I create a status bar at the bottom of a window ?

    I would like to create a status bar at the bottom of my main window similiar to "Internet explorer" has. I thought of using a tool bar but I can't see how to keep it positioned at the bottom of the window when the window is resizable. Any other ideas on how to do this the bar only needs to contain a small amout of text and maybe an icon or two.

    CVI doesn't have a status bar control on UI element like the one available in Visual Studio++. The best way to replicate this is most like through a string control that is resized and positioned to remain at the bottom of the window and colored to look appropriately. I have also seen the combination of a decoration and a text message used.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • How to create a gui pf status and guititle in module pool programming?

    hi frnds,
    how to create a gui pf status and gui title in module pool programming?
    my problem is i created a screen and wen execute the screen by a tcode.am nt able to activate SAVE BACK EXIT CANCEL COMMANDS?.how to do this can any one explain in detail procedure?
    plz gve step by step process.

    Hi,
    For Title:In PBO...just write
    SET TITLEBAR 'ZTITLE'.
    double click on 'ZTITLE'....give whatever title u want...save it...activate...and check...reward points if useful...
    PF means FUNCTION CODE
    ex; set pf-status 'zrstatus'.
    double click on the zrstatus expand the application server ,
    at the time of execution the default menu(ie system,help),application toolbar buttons like enter,help etc and function keys(by default there will be no function keys)as are there on the normal
    will appear on the screen.
    Details:
    PF-STATUS is used to set the GUI Status of a screen, ie you can control the options on your menu bar, application toolbar, the function keys assigned to various options etc.
    Implementing the status for a screen can be done in 2 ways:
    1) Create the GUI status using the object list of the program or by using the transaction SE41. Then, assign it to the screen using SET PF-STATUS statement.
    2) Create the GUI status by means of forward navigation, ie, use the SET PF-STATUS 'XXX' statement where 'XXX' is the name of the GUI status and double click on it to create it.
    Status names can have a maximum of 20 characters.
    After assigning a GUI status to a screen, this is inherited to all subsequent screens. In order to have a different status for each of the subsequent screens, you have to set a separate status for each screen.
    In transaction SE41,
    1) Give the program name and the status name and click on the Create button.
    2) Go to 'Function keys' and expand.
    3) On top of the save icon type SAVE, on top of the back icon type BACK, on top the the exit icon type EXIT etc ie on top of all the icons that you want to use, type the respective names that you want to give.
    Whatever you have typed now becomes the function codes of these icons and can be used in your program.
    For example you have a screen 100.
    In the 'Element list' tab of the screen, give "ok_code" as the name where "OK" is the type of screen element. Activate screen.
    The flow logic for the screen looks like this:
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
    Create the modules STATUS_0100 and USER_COMMAND_0100 in the main program by simply double clicking on them.
    The code for these modules can be something like this:
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'Example'. "Example is the name of the GUI status
    ENDMODULE.
    MODULE user_command_0100 INPUT.
    CASE ok_code.
    WHEN 'SAVE'.
    "call a subroutine to save the data or give statements to save data.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    WHEN 'EXIT'.
    LEAVE PROGRAM.
    ENDCASE.
    ENDMODULE.
    Regards,
    Shiva Kumar (Reward If helpful)

  • How to create a user new user status as closed for aWBS element

    Hi,
    Can any one explain me the process of how to create a new user status '' Closed'' for the WBS element which when trying to close has error and are not able to close. So can we create a new status inroder to close the WBs element
    Thanks nd Regards
    Sri

    Hello Srihari,
    Use OK02 transaction to create a status profile. You can create a new user status in the status profile.
    If you already have a status profile which is maintained in the master data, then you can create a new user status as closed to that status profile.
    Hope this will help you..
    Regards,
    Praisty

  • How to create an IDOC Status.

    Hi All,
    I have a requirement to create an IDOC Status, which should be a copy of existing status.
    How to accomplish the same.
    Regards,
    Neha

    Hi Neha,
    You can create the Idoc status, if it is an Inbound Idoc. Copy the Existing process code & add it to u r Inbound Partner Profile. In the process code u can create the status..Check the below code.
    if gv_error_status <> 0.
            condense gt_msgv-msgv1 no-gaps.
            translate gt_msgv-msgv1 to upper case.  "#EC TRANSLANG
            set extended check on.
            read table idoc_contrl index 1.
            idoc_status-status = '68'.
            idoc_status-uname  = sy-uname.
            idoc_status-repid  = sy-repid.
            idoc_status-routid = gv_funcname.
            idoc_status-docnum = idoc_contrl-docnum.
            idoc_status-msgv1 = gt_msgv-msgv1.
            idoc_status-msgv2 = gt_msgv-msgv2.
            append idoc_status.
            idoc_status-status = '51'.
            idoc_status-uname  = sy-uname.
            idoc_status-repid  = sy-repid.
            idoc_status-routid = gv_funcname.
            idoc_status-docnum = idoc_contrl-docnum.
            append idoc_status.
    endif.
    I hope this help you.
    Regards
    Rajendra

  • Can someone tell me how to create accounting entries with the account status as error

    Hi,
    Can someone tell me how to create accounting entries with the
    account status as error?
    Thanks!!
    Danny

    It's call fixed/static background, and it is NOT directly support by iweb, you will need post processing either in html or javascript.
    Varkgirl (you need to search the previous forum) and I did it since iweb1:
    try Safari, and scroll: http://www.geocities.com/[email protected]/Links.html
    invisible link? roddy, fishing for info again?

  • How to create a new employment status in action info type 0000?

    Hi All,
    how do we add  new employment status in action info type 0000?
    As we all know right now we have Active, Inactive, Retire, Withdrawn.....reguirement with my client is to add a new on onleave.
    Can you someone please help me on this?
    Thanks Much!
    Raj

    Hi
    Create a new action - called "OnLeave (with Pay) " use the status - Active and if required create another action OnLeave (Without pay) with inactive status.
    Its not required to create new status.If required you explore the STAT3 or STAT1. Recommended to use the standard employement status - STAT2 or max you can go for STAT3.
    As per best practice, I recommend you to create another action called - Reporting back from Leave.
    >SAP Customizing Implementation Guide
    >>Personnel Management
    >>>Personnel Administration
    >>>>Customizing Procedures
    >>>>>Actions
    >>>>>>Define infogroups
    >>>>>>Set up personnel actions
    >>>>>>Create reasons for personnel actions
    >>>>>>Change action menu
    Maintain right usergroup/reference.
    Thanks,
    Amosha
    Edited by: Amosha on May 21, 2009 2:17 AM

  • How to Create Delivery for a delivery detail which is in Released Status 'Y

    Hi All,
    I am trying to create delivery for a delivery detail which is in Release Status (Release status 'Y'). When I am trying to create trips using the API 'wsh_delivery_details_pub.Autocreate_del_Trip', I am getting this error “Delivery ID XXXXX is not eligible for action Auto-create Trip”.
    Please advise.
    Thanks

    Hi Gokula,
    Web Application security is defined in the servlet spec. You should use
    web.xml and weblogic.xml to configure security instead of using acl's
    I am enclosing the link to the relevant documentation below
    http://e-docs.bea.com/wls/docs61/webapp/security.html#100365
    Gokula Krishnan wrote:
    Hi All,
    I am working on Weblogic6.1 and iPlanet Directory Server 5.1. I
    am trying to create ACL's in Weblogic and to test a Web Application
    which I have configured in weblogic. The problem is I am not able to
    create a ACL for the web application resource in weblogic. Could any
    one pls help me on how to create ACL through weblogic console.
    I try creating ACL as per the document but I dont now how to give
    permission and map the ACL for the resource.
    Thanks in advance...
    With regards,
    Gokul.

Maybe you are looking for