How To Remove Standard CheckIn Form in CheckIn menu option list

Hi to all.
I need To Remove Standard CheckIn Form in CheckIn menu option list.
I want to use only my customized profiles.
Is there any doc or sample related.
Thanks in advance,
Soni

Unfortuantely, you must create your own custom component. I'm not going to explain how to do that since that requires a lot of typing, but if/when you decide to tackle that, you will need to include this in your resource file:
<@dynamichtml custom_finish_layout_init@>
<$include super.custom_finish_layout_init$>
navBuilder.deleteItem('MY_PERSONAL_CHECKINS_'+pneCheckinDocProfiles.length);
<@end@>
However, keep in mind this is what I use for my content server (10gR3 with CS10gR3CoreUpdate component, build 186). I have no idea what future patches may or may not have done with profile naming conventions or changes. I'm confident this will still work, but cannot be for certain.
Good luck.
PS. Please award points if deemed necessary

Similar Messages

  • How to use standard Smart forms

    hi All,
    Pls give me the detail for smartform ie how to use standard smart forms and how to modify them in SAP 4.7EE
    Thanks,
    Nitin

    Hi,
    first u copy the standrad smartform to z and then modify it,
    SOME STANDARD SMARTFORMS
    SF_EXAMPLE_01,
    SF_EXAMPLE_02,
    SF_EXAMPLE_03,
    LB_BILL_INVOICE,
    ENETR SMARTFORMS TCODE
    PRESS F4 HERE U FIND ALL STANDARD SMARTFORMS
    OR
    U GO TO TRANSACTION CODE NACE
    SAMPLE PROGRAM FOR SMARTFORM,
    . Create a new smartforms
    Transaction code SMARTFORMS
    Create new smartforms call ZSMART
    2. Define looping process for internal table
              Pages and windows
          First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
          Here, you can specify your title and page numbering
          &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
          Main windows -> TABLE -> DATA
          In the Loop section, tick Internal table and fill in
          ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
               Global settings :
               Form interface
               Variable name    Type assignment   Reference type
               ITAB1               TYPE                  Table Structure
               Global definitions
               Variable name    Type assignment   Reference type
               ITAB2               TYPE                  Table Structure
    4. To display the data in the form
        Make used of the Table Painter and declare the Line Type in Tabstrips Table
         e.g.  HD_GEN for printing header details,
                 IT_GEN  for printing data details.
         You have to specify the Line Type in your Text elements in the Tabstrips Output options.
          Tick the New Line and specify the Line Type for outputting the data.
          Declare your output fields in Text elements
          Tabstrips - Output Options
          For different fonts use this Style : IDWTCERTSTYLE
          For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by :  SAP Hints and Tips on Configuration and ABAP/4 Programming
                        http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
            INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
       MOVE-CORRESPONDING MKPF TO INT_MKPF.
       APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
      exporting
        formname                 = 'ZSMARTFORM'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
      IMPORTING
        FM_NAME                  = FM_NAME
      EXCEPTIONS
        NO_FORM                  = 1
        NO_FUNCTION_MODULE       = 2
        OTHERS                   = 3.
    if sy-subrc <> 0.
       WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        GS_MKPF                    = INT_MKPF
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5.
    if sy-subrc <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Thanks&Regards,
    Phani
    POINTS HELPFUL

  • How to find Standard Output forms

    Hi,
    How to find the standard output forms for the following:
    1. Purchase Requesition
    2. RFQ
    3. Inventory Records
    4. Goods Receipt Note
    I want to access these outputs and add the company logo.
    Thanks in advance.
    Regards,
    Sriram

    Hi,
       Go to Nace Transaction code and then in the Left you will find Application and Description and there select ME for inventory and then click on output types.There select an output type in the list of output types given and then click the Processing Routines where you will get the complete details. For RFQ and Purchase Requisition check the Application EA.
      Coming to the uploading of the Logo. Go to Tcode se78 there below Form Graphics select Graphics and inside that you will find Bit map images . Select that one and click on import button which is present left to the delete button and there in the file name give the logo which is stored on your desktop and then select the type as Black and white or Colour Image as per your requirement.In the name give a meaningful for the logo in SAP system.Then click enter.
    Hope this will help you.
    Regards,
    Venkat.

  • How to Call Standard PO Form in my Z program

    Hi All,
    Could you please tell me, How to Call the Standard PO form in my Z program for print priview and printing.
    My requirement is :
    Create Z program with PO Number as Selection screen.When we give the PO Number and Press execute it will show the print priview with printer option.
    Thanks & Regards
    Murali

    Plz refer this.
    REPORT  ZPPR_BOM1.
    TABLES
    TABLES : MAST.  " Material to BOM Link
    *& Internal tables         Begin with it_
    DATA : IT_MAST TYPE MAST OCCURS 0  WITH HEADER LINE.
    DATA: fm_name TYPE rs38l_fnam.
    CLEAR   : IT_MAST.
    REFRESH : IT_MAST.
    *& Parameters       Begin with pr_
    *& Select-options   Begin with so_
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS:  PR_MATNR LIKE MAST-MATNR OBLIGATORY,
                 PR_WERKS LIKE MAST-WERKS OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b1.
      SELECT * FROM MAST  INTO TABLE IT_MAST   " Get BOM number
        WHERE MATNR = PR_MATNR
          AND WERKS = PR_WERKS.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname = 'ZPPS_BOM1'
        IMPORTING
          fm_name  = fm_name.
    CALL FUNCTION fm_name "'/1BCDWB/SF00000079'
    EXPORTING
       ARCHIVE_INDEX              =
       ARCHIVE_INDEX_TAB          =
       ARCHIVE_PARAMETERS         =
       CONTROL_PARAMETERS         =
       MAIL_APPL_OBJ              =
       MAIL_RECIPIENT             =
       MAIL_SENDER                =
       OUTPUT_OPTIONS             =
       USER_SETTINGS              = 'X'
    IMPORTING
       DOCUMENT_OUTPUT_INFO       =
       JOB_OUTPUT_INFO            =
       JOB_OUTPUT_OPTIONS         =
       TABLES
         IT_MAST                    = it_mast
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • How to remove standard buttons on Custom Control?

    Hi ABAPers,
    How to remove the standard buttons that are appear on custom control and also how to remove the description of line column details.
    Because in my requirement I have to create one custom infotype in which I have to add four custom controllers. In record creation it displaying that buttons and line description. So I want to remove those buttons and line descriptions.
    Could you please give me the solution for this?
    Thanks in advance,
    Regards,
    kishore

    Hi Deepak,
        CALL METHOD G_EDITOR1->SET_TOOLBAR_MODE
          EXPORTING
            TOOLBAR_MODE           = 0
          EXCEPTIONS
            ERROR_CNTL_CALL_METHOD = 1
            INVALID_PARAMETER      = 2
            OTHERS                 = 3.
        IF SY-SUBRC <> 0.
                 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    Regards,
    Kishore.

  • How to remove corrupt MD form in PL/SQL App

    I have a form that no longer shows any options in the 'Actions' column of the portal Navigator. All other types in the application still show actions and can be modified. I need to remove this corrupt form, because since it corrupted I can no longer add portlets from this application to any page. If I click the name of the form listed in the Navigator I see Error: Insufficient privileges. (WWV-10600) I have privs, they work fine on other App Items. I can still add portlets from other applications to pages. I am on 9i AS 1.0.2 for NT. Of course the flame throwers are full blast to get this application available ... please help me remove this corrupt form!

    Tim,
    There is a couple of things you can do:
    1. Restore ACL info for that form by running following plsql as portal schema owner:
    begin
    portal30.wwsec_api.set_user_acl(
    p_person_id => portal30.wwsec_api.USER_PUBLIC,
    p_object_type_name => 'MDF',
    p_owner => 'YOUR_APPLICATION_NAME',
    p_name => 'YOUR_FORM_NAME',
    p_privilege => 'MANAGE');
    end;
    2. Delete the component entry directly from the table, from sqlplus as portal schema owner:
    delete from WWV_MODULES$
    where name = 'YOUR_FORM_NAME'
    and type_id = 17;
    I would recommend to try the 1. first.
    Thanks,
    Dmitry

  • How to get the name of the clicked menu option dynamically from oracle form

    Hi folks,
    I need to know inside the forms which one was the menu option clicked by the user to open the module.
    Is that possible?
    Thanks a lot,
    Abdel Miranda
    Panama

    I don't think that's possible but since you can't create menu items at runtime it's not relevant. Just set a global variable to the menu item's name in the code of each menu item.

  • How find print program and form name from the spool list

    Hi,
          I have a requirement to find print program and form name from the spool list.
    I got the list of programs and forms from TNAPR table, I also want to find out any custom program sending the form directly to the spool.
    Cheers
    Sam

    Hi
    Try TSP01-Suffix2
    Regards
    Raj

  • How to remove a oracle form from read only format

    I need to personalize an Oracle form for one responsibility. But when i open through that responsibility, it is opening in read only format. When i open the same form through super user responsibility, then it is opening up-datable format. I tried different options like 'System Profiles- HR Query only to 'NO'', 'Removing Query-Only'. but still i can open it only in read only format where i need to make some fields up-datable.
    Any suggestions please?

    Hi All,
    I have an Standard E-Business Suite screen.
    This is the Transaction Overview Screen, which is in Read-Only Mode.
    The Value of the unit price is rounded on 2 decimal.
    We tried to change this with Perzonilization, but the the error is coming up
    "FRM-40602: Cannot insert into or update data in a view"
    What are we doing wrong.
    Thanks for your support.
    Best regards Marcel Snoeck

  • How to remove 'Back to form' from portal page.

    How can I remove the 'Back to form' and tick from a portal page?

    I'm assuming you are creating a form from a procedure. Edit the form. The first page you see, scroll to the bottom. You'll see a text area where you can use the go('') statement. You'll redirect the submitted portlet to the page that displays your portlet. This skips the link.

  • How to remove corrupted portal forms.

    I am unable to delete Portal Components (forms, reports) that got
    corrupted
    when I try to revoke permissions from it.
    For example, I granted execute permission to 5 users. Later, when
    I try to
    revoke
    execute permission from 3 users, the form was corrupted totally.
    I can't even
    edit it. So now, it still shows up as an entry under the
    application but I
    cannot even edit nor delete it. How do I remove it? Thanks.

    My new 5800 had the same problem.
    I fixed it like this:
    - first used the Content Copier in the OVI suite to backup the memory card.
    - then go into the FileManager application on the phone, select the memory card and then under Options->Memory Card Options select "Format". This will wipe all the data off the memory card.
    - Then I restored the memory card from the backup using the ContentCopier again (otherwise you end up losing all the Nokia Maps)
    - Switched the phone on and off again.
    - Going into the music player, it came up with a message like "Looking for music files" or something.
    - Once this had finished, all the working music tracks were back in the library but the corrupt ones were gone.
    No other problems that I can see after doing this.
    regards
    Message Edited by lameplanet on 06-May-2009 06:11 PM
    Message Edited by lameplanet on 06-May-2009 06:12 PM

  • How to invoke Standard BOM form in pre-queried mode?

    Hi,
    I need to invoke the Standard Oracle BOM form from a custom form developed.
    I have the Bill Sequence ID, Inventory Item ID and the Organization ID available in the custom form.
    Currently this is how I am trying:
    fnd_function.EXECUTE
         (function_name => 'BOM_BOMFDBOM',
         open_flag => 'Y',
         session_flag => 'N',
         other_params => 'BILL_SEQ_ID="'
         || l_num_bill_seq_id
         || '" INV_ITEM_ID="'
         || l_num_inv_item_id
         || '" ITEM_ID="'
         || l_num_inv_item_id
         || '" ORG_ID="'
         || :parameter.org_id
    || '" G_QUERY_FIND= "'
    || 'TRUE'
         || '"'
    The form does open up. But not pre-queried for the Bill Sequence I pass to it.
    Can anyone please let me know if I am missing something.
    Thanks a bunch,
    Vinay.

    This might help
        If :b_bill_of_matls.Assembly_Item_Id is not null then
          X_Parameters :=
            ' ASSEMBLY_ITEM_ID='||to_char(:b_bill_of_matls.Assembly_Item_id);
          If :b_bill_of_matls.Alternate_bom_Designator is not null then
            X_Parameters := X_Parameters ||
            ' ALTERNATE='||:b_bill_of_matls.Alternate_bom_Designator;
          End if; -- alternate
          X_Parameters := X_Parameters ||
            ' ORG_ID='||to_char(:Parameter.Org_Id)||
            ' ORG_CODE='||:Parameter.Org_Code;
        End if; -- specific routing
        Fnd_Function.Execute(
          function_name => X_Function,
          open_flag => 'Y',
          session_flag => 'Y',
          other_params  => X_Parameters);

  • How to use standard pdf forms for HR

    Hi
    We just upgraded our system from 4.6C to ECC6.0. We just did technical upgrade. IF we want to use SAP provided pdf forms for any HR applications like w-2's or something else.. what do  we need.. Can we use them with out ADS ? and without a Java server?
    Thanks

    Hello,
    you need a Java server and need ADS configured. To do this is not easy for me as a application developer, but it is easy for the basis guys. Ask one to make this ready for you. Esitmated time is like 3-5 days. ADS is free for printing (replaces SAPscripts and Smartforms by Adobe forms).
    For HR forms I recommend create your custom ones, because you can develop it very quickly and it will meet any specific requirements of your business. This way you will spare much time and psychic sanity searching and changing SAP HR standard (my 2 yrs experience).
    Have a nice day, Otto
    p.s.: If you have further interest in Adobe, move your questions to Adobe forms forum under NetWeaver.

  • "urgent" pls help: How to remove name space form message in call to WS

    Hi
    I am calling a WS from my BPEL process. In the BPEL process I call the WS by referring to the URI of the WS in the partner link. The process works fine. But I have a problem with the message size. The WS does not accept Message size greater than 16kB.
    But my message some time exceeds 16kB when maximum data is handled in the message.
    Now I found that the each element in the request contains the namespace which eats up a lot of space.
    Is there a way to remove the namespace from individual elements and put it in a common place in the file? This would reduce the file size.
    I would like to bring to your notice that the WSDL of the WS that I am referring to does not have any reference of xsd. And also no XSD has been created in my BPLE process for this WS.
    Present message
    <messages>
    <InvokeCallORSNewHI_HELLO_InputVariable>
    <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="parameters">
    <HELLO xmlns:ns1="http://abc.def.com/webservices/" xmlns="http://abc.def.com/webservices/">
    <ns1:HELLO_DATA>
    <ns2:HI_TW xmlns:ns2="http://abc.def.com/webservices/packets">
    <ns3:IDENT xmlns:ns3="http://abc.def.com/webservices/fields">400001102/T1-TW17902</ns3:IDENT>
    <ns3:HI xmlns:ns3="http://abc.def.com/webservices/fields">400001102/T1</ns3:HI>
    <ns3:START_DATE xmlns:ns3="http://abc.def.com/webservices/fields">20080404</ns3:START_DATE>
    <ns3:START_TIME xmlns:ns3="http://abc.def.com/webservices/fields">0800</ns3:START_TIME>
    <ns3:DURATION xmlns:ns3="http://abc.def.com/webservices/fields">1200</ns3:DURATION>
    <ns3:WINDOW_COST xmlns:ns3="http://abc.def.com/webservices/fields">1.113</ns3:WINDOW_COST>
    <ns3:LATE_COST xmlns:ns3="http://abc.def.com/webservices/fields">1.75</ns3:LATE_COST>
    </ns2:HI_TW>
    </ns1:HELLO_DATA>
    </HELLO>
    </part>
    </InvokeCallORSNewHI_HELLO_InputVariable>
    </messages>
    Expected------------
    <HELLO xmlns:ns1="http://abc.def.com/webservices/" xmlns="http://abc.def.com/webservices/">
    <ns1:HELLO_DATA>
    <ns2:HI_TW>
    <ns3:IDENT>400001102/T1-TW17902</ns3:IDENT>
    <ns3:HI>400001102/T1</ns3:HI>
    <ns3:START_DATE>20080404</ns3:START_DATE>
    <ns3:START_TIME>0800</ns3:START_TIME>
    <ns3:DURATION>1200</ns3:DURATION>
    <ns3:WINDOW_COST>1.113</ns3:WINDOW_COST>
    <ns3:LATE_COST>1.75</ns3:LATE_COST>
    </ns2:HI_TW>
    </ns1:HELLO_DATA>
    </HELLO>
    Thanks
    Buddhadev

    Dear Rico
    Thanks for replying.
    Which XSD are you refering to ;
    Is it process XSD or the XSD created for the called WSDL.
    As I have stated, no XSD has been created for the Consumed WS. And no XSD reference is present in the WSDL of the WS consumed by me.
    Please confirm
    Thanks a lot
    Buddhadev

  • HT1918 HOW TO REMOVE MY CREDIT CARD FROM MY BILLING OPTIONS ON MY ACCOUNT

    How do I remove my Credit card from my ITunes account?  When I try to select none it says to contact support.

    How do I cancel my credit card from my account?

Maybe you are looking for