T588M like table for customize e-recruitment application infotypes

Hi
I am looking for the customizing table or a proper way to hide unwanted infotype fields like nameconnection , 2.title etc. on the candidate application screen .  we are on ea-hr 606 same instance with sap hcm , integrated central person. For there is no application configuration FPM like ESS. How should we proceed? Best Regards. 

Hey.
The data is not stored in infotypes but that doesn't matter. You should use personalization to hide the fields. You can pass the parameter in the URL's you use on your company's jobsite, but you should also look at following badis:
HRRCF00_DET_APPL_CONFIG_STARTP
HRRCF00_DETERMINE_APPL_CONFIG

Similar Messages

  • Table for image controlling in PD infotypes

    Hello,
    Please, we need to know if there is any table for image controlling in PD infotypes. In PA table is: T588M.
    Thank you

    Sorry,
    I've not come across one in the 10 years that I've been working on SAP.
    J

  • Change of client for an e-recruiting application

    At the moment in our production system(SAP 6.O) there are two clients:
    Client 400 where FI/CO/MM application are running, and client 300 for
    HCM applications.
    We would like to have only one client in our production system.
    Due to this, we would like to move HCM process and data from cliente
    300 to client 400. At the end of migraton Client 300 will be cancelled.
    Among others applications, also SAP e-recruiting is running in
    client 300. Is it possibile to move E-Recruiting data and attacchments
    from one client to another? I'm worried especially about attacchments
    stored in content server and Business partner data.
    Thanks a lot!
    Christian

    I presume.. that the movement of data is from one client to another on the same SAP server.........
    so if that is the case then they can share the same content server......
    but if there is a shift from one sap server to another then there should be some basis and network stuff that needs to be done....... to use the content server.......
    Content server can either be on the same sap server in the form of a folder......
    or it can be a separate data base server....
    You need to first ask for these clarifications.........
    Regards,
    Divya

  • How to find config table for the field "language" in infotype-0002

    Hi Gurus,
    We are implementing ECC 6.0 at our client site.
    The client wants to use language field in persoanl data infotype as mother tongue and include indian languages.
    He don't want all other languages like spanish etc instead he wants indian languages like Hindi,telugu,tamil etc.
    can any body please help me in which table we can configure this.
    Thanks in advance
    Regards
    AnanyaK

    Hi,
    You can enter the languages in the IMG
    Path is
    IMG-> Personnel Management-> Personnel Administration -> Personnel Data-> Languages
    Or  you can simply go for technical information in the field name and will get the table name for that field and can maintain in SM30
    Regards,
    Kapil Kaushal

  • Variable Parameters for customization

    Hi All,
    As a SCM functional consultant-
    1. What are the variable parameters(like DFF) for customization/apps extn in oracle apps for me?
    2. I will have to prepare/use MD50 docs for apps extension. How can I update my skill on that?
    3. I will have to prepare TE-20(functional part) so how can I make myself strong in that? Whether MD-50 & TE-20 docs of other projects will help or is there any other way also?
    Thanks & regards

    Hi;
    All APIs are listed in Oracle Integration Repository
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    "12: How To Access API References via the Oracle Integration Repository" [ ID 462586.1]
    "Oracle Integration Repository Documentation Resources Release 12" [ ID 396116.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

  • Table as Input parameter for BAPI in Webdynpro Application

    I am creating webdynpro JAVA application to create RFQ, for which ABAP guy written a Custom BAPI called Z_BAPI_INQUIRY_CREATE. I tested this BAPI  in SAPGUI it is working fine. From my webdynpro application when I passes header and item parameter, my header getting inserted but my item data is not. It is giving me error like "Table input parameter not found". I am passing table to this bapi. When I tried my code to standard BAPI's (NOT CUSTOM), I am able to insert both HEADER and ITEM data.
    In above scenario I have few questions,
    1. Is there anything extra we have to do with custom BAPI's? (my BAPIs are in BOR).
    2. What is the datatype in webdynpro parallal to table parameter?
    3. is there any tutorial available for table parameter? (except FLIGHT examle).
    Thanks and regards,
    Nitin

    Hi Vijayakhanna Raman,
    Thanks much for your reply.
    Yes I did the same as you mentioned, but still I am getting an error "Table parameter not avaliable is empty".
    I am not getting were is the bug. And this is happening only with ZBapi's not with Standard Bapi's.
    I am really stucted becouse of this, answer will really get all 10 points.
    Here is my code,
         1. First create an instance for bapi and bind the instance to the bapi node.
         Z_Bapi_Inquiry_Change_Input input = new Z_Bapi_Inquiry_Change_Input();
         Zbapirfqitem item =new Zbapirfqitem();          
         wdContext.nodeBapi_RFQ_OnHold_Update_Input().bind(input);
         2. Then if u have the import parameter u have to set them by using
         input.setRfq_Number("6");
         input.setCreated_By("NLNS0000");
         //wdContext.currentBapi_RFQ_OnHold_Update_InputElement().modelObject().setRfq_Number("6");
         //wdContext.currentBapi_RFQ_OnHold_Update_InputElement().modelObject().setCreated_By("NLNS0000");
         3. If the bapi has a table parameters then the structure for the table parameters will also be imported In the model class.
    DONE!
         4. Set the table parameters by creating the instance for that structure and using this instance set it.
                             item.setUpdateflag("I");
                             item.setItm_Number("000030");
                             item.setMaterial("MAT-NITIN");
                             item.setMatl_Desc("Inserted by Nitin");
                             item.setQuantity(new BigDecimal(4));
                             item.setBase_Uom("PCE");
                             item.setReq_Qty(new BigDecimal(4));
                             item.setBase_Uom1("PCE");
                             item.setList_Price(new BigDecimal(3));
                             item.setList_Curr("");
                             item.setReq_Price(new BigDecimal(4));
                             item.setCurrency("EUR");
                             item.setIndirect_Price(new BigDecimal(4));
                             item.setCurrency_2("EUR");
                             item.setFinal_Price(new BigDecimal(4));
                             item.setCurrency_3("EUR");
                             item.setText_Line("");
                             item.setReq_Date_H(new Date(12-05-06));
                             item.setDirect_Dis(new BigDecimal(4));
                             item.setIndirect_Dis(new BigDecimal(4));
                             item.setFinal_Dis(new BigDecimal(4));
                             item.setProfit_Margin1(new BigDecimal(4));
                             item.setProfit_Margin2(new BigDecimal(4));
                             item.setBrand1("");
                             item.setModel1("");
                             item.setVal_Loccurr1(new BigDecimal(4));
                             item.setCurrency1("");
                             item.setBrand2("");
                             item.setModel2("");
                             item.setVal_Loccurr2(new BigDecimal(4));
                             item.setCurrency2("");
              5. Then add the structure instance to the bapi instance.
         input.addItem(item);
         6. Then Execute the bapi after setting the import parameters.
              //wdThis.wdGetContext().currentBapi_RFQ_OnHold_Update_InputElement().modelObject().execute();
              input.execute();
    Message was edited by: Nitin Kamble

  • Master Table for Work Items from BSP Application

    hello guys,
    just want to ask if there is a master table for work items (and other details) from BSP application?

    Hi,
          Ya its true but i want to connect my customized application to UWL in Enterprise Portal and there after approval i want my workitems to be punched in R/3 system.Is there any source code available,so that my application directly contact UWL in sap enterprise Portal as a link or workitems where user should have an option to approve or reject.
    If u have any idea plz let me know.
    Thanks in Advance
    Regards
    Santosh Saraf

  • Header table for service contract like CRMD_DHR_HEADOPP

    Hi,
    As we can get all the details from CRMD_ORDERADM_H and CRMD_ORDERADM_I,  table for the business transactions, along with this for the opportunity and lead we also have the header table as CRMD_DHR_HEADOPP and CRMD_DHR_LEAD, from which we can directly select the prospect and employee responsible. Now we are working with Service/Sales quotation and  contract, for this Is there any header level table from where we can get the details for prospect and employee responsible.without using the CCRMD_ORDER_INDEX table.
    Regards,
    Zafar

    Hello Zafar,
    I such cases I use the BOL-model to get the data. To find out your relevant BOL-entities go to the right WebUI screen and press F2. Then you see the application, view and context node and you can find out which BOL-entity you need.
    Best regards,
    Thomas Wagner

  • How to know the tables for a datasource like 2lis_17_order

    Hi,
    How to know the tables for a data source like 2lis_17_order, i have checked in Extract structure of that data source, only fields are visible but how will i know that these fields are getting extracted from so and so tables?
    pls respond. thanks in advance

    Hi,
    Go to RSO2 at source system, Enter data source and click on display.
    if its table based then you can see table name there it self.
    if its view based then notedown the view name and go to  SE11, provide view and click on display. see joined table names there.
    Thanks

  • How to fill setup table for Application 18 Customer services

    Hi,
    How can I fill setup table for application 18.
    Regards,
    ST

    Hi,
    To fill LIS, first set your LIS to update. use the central Tcode OMO1(for SD), OMO2(for MM) or OMO3(for other logistics) or you can set it in MC24 also(activate button).
    SBIW -> settings for application specific datasources -> Logistics -> managing transfer information structures ->.... -> statistical setup Sales. (Application component 17 >transaction OLIIBW,Application component 18> OLISBW )-->select the relevent one whether sales/billings/deliveries etc in the pop-up. enter your LIS, give a name to job and execute.
    Also pls chk this;
    Re: query on setup table filling
    Regards
    CSM Reddy

  • Tcode to fill setup tables for application 0CS( Customer Service)

    Dear Experts,
    i have to fill the setup tables for the datasource 2LIS_18_I0TASK.
    the datasource comes under the appilcation 0CS( Customer Service).
    when i am trying to fill the setup tables through the tcode SBIW i am not able to find the respective appilcation.
    Could you please let me know the transaction to fulfill the same.
    Regards,
    Sunil...

    Hi SunilKumar Bolle,
    For filling setup tables for 0CS Data Sources Use the T-Code- OLISBW, or use the path SBIW->Settings for Application-Specific DataSources (PI)->Logistics->Managing Extract Structures->Initialization->Filling in the Setup Table->Application-Specific Setup of Statistical Data->Service Management - Perform Setup
    The only way to say thanks in SDN is to assign Points.

  • Want to know SAP MM Table, like table VBFA for SD Document Flow

    Hello Experts,
    I want to know, direct relationship between GR against PO line item and IR against PO line item.
    I want to know, is there any SAP table for MM which gives direct relationship between succeeding document and preceding document, similar to table VBFA for SD Document Flow.
    We have EKBE table which gives information about GRs and IRs for PO Line items.
    Consider following case,
    We have PO with line item say P1.
    Two GRs are done for the same item, say G1 and G2.
    Also two IRs are done for the same item, say I1 and I2.
    In table, EKBE it just shows that, G1 and G2 are done for P1.
    Similarly I1 and I2 are done for P1.
    I want the table showing that, I1 is done after G1 and I2 is done after G2.
    (or may be showing that, I1 is done for G1 and G2)
    Do we have such table in MM? If such table does not exist, is there any way to verify this case?
    Please share your opinion.
    Thanks in advance.
    Amrut

    Amrut,
    If it is a GR based IR (check PO item Invoice tab- GR Based IV checkbox), you will find this link in table RSEG. You will find the GR number & item number in Reference number & Reference number Item field (LFBNR & LFPOS).
    If it is non-GR based IR, then I think only way is to get it through EKBE (which you have explained in your question) since these two are not linked directly.
    Regards,
    Gokul

  • Problem while filling the Setup Table for the DS 2LIS_02_SCL.

    Hi All,
    When I am trying to fill the Setup table for the DataSource 2LIS_02_SCL and only for one specific Purchase Order, it is showing me a message like
    u201CDataSource 2LIS_02_ITM contains data still to be transferredu201D
    I have deleted the Setup Table and I want to delete the entries from SM13, but I do not have Authorization.
    Also, here I am trying to fill the Setup Table for 2LIS_02_SCL and not for 2LIS_02_ITM, but the message displayed above is showing as 2LIS_02_ITM DataSource. I think the Setup Table will be same for both the DataSources.
    Waiting for your valuable inputs.
    Thanks in Advance.

    Hi,
    When you want to fill the setup tables first you need to delete setup tables to avoid the duplicate entires in setup tables ( you can delete the setup tables by using t.code LBWG with application no is 02)
    In your case, the data souce is 2LIS_02_SCL for purchasing.
    when you want to delete the setup tables by using t.code LBWG with 02 application no it will delete all the purchasing related data from all the data sources like
    2LIS_02_SCL
    2LIS_02_ITM
    Before the deletion of setup tables you need to clear the delta Queues and stop the V3 jobs, which loads the data to Delta Queues (RSA7) and Update tables(LBWQ).
    you need to run the V3  jobs manually by using LBWE > Job control > and schedule the jobs until the delta queues will get 0 records. that means no data will be available in RSA7 and LBWQ
    go to SM37 to see the jobs LIS-BW-VB_APPLICATION_02,
    once the delta queues gets 0 records by running V3 Jobs manullay.
    Then remove the released state jobs > remove from schedule means delete the jobs in LBWE > Go to job control > you can delete the released jobs.
    Becuase No postings to be done in application tables, while running setuptable filling you should take some down time to fill the setup tables.( OLI*BW)  *=Application number.
    Once you clear the Queues and delete the v3 jobs, then you need to fill the setup tables after deletion of setup tables.
    once you fill the setup tables , by running intialization to BW side the delta Queue is formed for the data source in R3 side
    Now the postings can be done in R3 side, so you need schedule back the V3 jobs, which you already delted from LBWE to load the data from application tables to RSA7 or LBWQ.
    I hope this may help yoou.
    Regards.
    Rambabu
    Edited by: Rambabu velanati on Jun 9, 2010 4:41 PM
    Edited by: Rambabu velanati on Jun 9, 2010 4:52 PM

  • Best practice for distributing/releasing J2EE applications.

    Hi All,
    We are developing a J2EE application and would like some information on the best
    practices to be followed for distributing/releasing J2EE applications, in general.
    In particular, the dilemma we have is centered around the generation of stub, skeleton
    and additional classes for the application.
    Most App. Servers can generate the required classes while deploying the EJBs in the
    application i.e. at install time. While some ( BEA Weblogic and IBM Websphere are
    two that we are aware of ) allow these classes to be generated before the installation
    time and the .ear file containing the additional classes is the one that is uploaded.
    For instance, say we have assembled the application "myapp.ear" . There are two ways
    in which the classes can be generated. The first is using 'ejbc' ( assume we are
    using BEA Weblogic ), which generates the stub, skeleton and additional classes for
    the application and returns the file, say, "Deployable_myapp.ear" containing all
    the necessary classes and files. This file is the one that is then installed. The
    other option is to install the file "myapp.ear" and let the Weblogic App. server
    itself, generate the required classes at the installation time.
    If the first way, of 'pre-generating' the stubs is followed, does it require us to
    separately generate the stubs for each versions of the App. Server that we support
    ? i.e. if we generate a deployable file having the required classes using the 'ejbc'
    of Weblogic Ver5.1, can the same file be installed on Weblogic Ver6.1 or do we
    have to generate a separate file?
    If the second method, of 'install-time-generation' of stubs is used, what is the
    nature/magnitude of the risk that we are taking in terms of the failure of the installation
    Any links to useful resources as well as comments/suggestions will be appreciated.
    TIA
    Regards,
    Aasif

    Its much easier to distribute schema/data from an older version to a newer one than the other way around. Nearly all SQL Server deployment features supports database version upgrade, and these include the "Copy Database" wizard, BACKUP/RESTORE,
    detach/attach, script generation, Microsoft Sync framework, and a few others.
    EVEN if you just want to distribute schemas, you may want to distribute the entire database, and then truncate the tables to purge data.
    Backing up and restoring your database is by far the most RELIABLE method of distributing it, but it may not be pratical in some cases because you'll need to generate a new backup every time a schema change occurs, but not if you already have an automated
    backup/maintenance routine in your environment.
    As an alternative, you can Copy Database functionality in SSMS, although it may present itself unstable in some situations, specially if you are distributing across multiple subnets and/or domains. It will also require you to purge data if/when applicable.
    Another option is to detach your database, copy its files, and then attach them in both the source and destination instances. It will generate downtime for your detached databases, so there are better methods for distribution available.
    And then there is the previously mentioned method of generating scripts for schema, and then using an INSERT statement or the import data wizard available in SSMS (which is very practical and implements a SSIS package internally that can be saved for repeated
    executions). Works fine, not as practical as the other options, but is the best way for distributing databases when their version is being downgraded.
    With all this said, there is no "best practice" for this. There are multiple features, each offering their own advantages and downfalls which allow them to align to different business requirements.

  • How to stop document posting when filling setup tables for logistic app.

    Hello Boys
    I've read several threads and weblogs about data extraction from logistic applications i.e the ones which uses the infosources like 2lis_13_vditm, 2lis_02, 2lis_03, etc, etc,and now almost every thing is clear to me but one thing: how do i actually "close the system" while the process of filling setup tables i.e MC03BF0SETUP, MC03BX0SETUP, MC13VD0ITMSETUP,  are running?
    So I have some questions
    1) which is the procedure to prevent users from posting documents for an specific logistic applications (02,03, etc.) in a source system
    3) For example when using TC OLI9BW for statistical setup from billing documents (app no. 13), there is a check box "Block all billing documents?". Is this option for such pourpose?
    4) Every logistic applications has a different procedure??
    thanks (with points of course) for any help
    rgds
    A. Garduñ

    Hi Azael:
    Q1: usually the BW team will inform basis/secuity about the deletion and performing of setup tables. they will fix a time after the normal hours where in all users are locked out from the system. in a sense, R/3 will be down for that time.
    2. the check box which says, "block documents" is meant to block posting. for eg: you are doing setup tables late in the evening, and you assume that no user is assessing the system, but if there is a user(just by chance) who is doing some posting and when he try to save it, the system will not allow him to do save as you cheked this option.(normally we donot use this)
    3. some LO may have different procedures, for eg IM. but most of them have the same functionality.
    hope it helps.
    assign points if helpful
    kalyan

Maybe you are looking for

  • Output of Sapscript in Chinese language

    I have a Purchase order in english and now i want its output in chinese. I want the output of my script in chinese language. I have tried logging in chinese language but the output comes in German. I have also tried through se63. An output type is at

  • Purchase Order Line Item

    Hi, We have a PO line item. This PO line item is linked to a Profit Center ( Not directly ) .This item is linked to a Sales order in the " Account Assignment " tab and this sales order has a Profit Center. My question is, normally where do we assign

  • How to change SQL data source in rule file

    <p>Hi there,</p><p> </p><p>I use many rule files to load dimension and data with EssbaseSQL interface. (100-200 rule files!).</p><p>When need to cahnge information for data sources,  do Ihave to change it always with EAS interactively ?</p><p>Is ther

  • JTree node name

    hi, i have a jtree with a specific renderer, this renderer returns a jlabel to represent each node in the tree. The text can be either bold or normal, based on custom properties of the node being rendered. Sometimes, during the execution of the progr

  • REPORT ON G/L accounts with plant wise details .

    HI , Kindly provide me some standard reports in which i can see the G/L accounts with plant details. thanks