What are the SAP api calls...

Hi, I have a question about the SAP Portal framework. For example, if I created an edit page for editing portlets, is there an api call that I make to tell SAP portal that I am on edit mode so that portal will subsequently save the changes to perhaps an xml file? Maybe there is a edit_mode variable ?
Any suggestions or sample code is greatly appreciated!
Thanks so much!
Baggett.

Hi Detlev, if you have some time, if possible, can you take a look at EP Content Development question: <b>"Where is admin config page ? ..."</b>  Any help is very appreciated!
Thanks so much!
Baggett

Similar Messages

  • What are the parameters in Call transaction method?

    Hi ABAPER'S,
        Please give me what are the parameters in call transaction method?
    Thanks,
    Prakash

    Processing batch input data with CALL TRANSACTION USING is the faster of the two recommended data transfer methods. In this method, legacy data is processed inline in your data transfer program.
    Syntax:
    CALL TRANSACTION <tcode>
    USING <bdc_tab>
    MODE  <mode>
    UPDATE  <update>
    <tcode> : Transaction code
    <bdc_tab> : Internal table of structure BDCDATA.
    <mode> : Display mode:
    A
    Display all
    E
    Display errors only
    N
    No display
    <update> : Update mode:
    S
    Synchronous
    A
    Asynchronous
    L
    Local update
    A program that uses CALL TRANSACTION USING to process legacy data should execute the following steps:
    Prepare a BDCDATA structure for the transaction that you wish to run.
    With a CALL TRANSACTION USING statement, call the transaction and prepare the BDCDATA structure. For example:
    CALL TRANSACTION 'TFCA' USING BDCDATA
    MODE 'A'
    UPDATE 'S'.
    MESSAGES INTO MESSTAB.
    IF SY-SUBRC <> 0.
    <Error_handling>.
    ENDIF.
    The MODE Parameter
    You can use the MODE parameter to specify whether data transfer processing should be displayed as it happens. You can choose between three modes:
    A Display all. All screens and the data that goes in them appear when you run your program.
    N No display. All screens are processed invisibly, regardless of whether there are errors or not. Control returns to your program as soon as transaction processing is finished.
    E Display errors only. The transaction goes into display mode as soon as an error in one of the screens is detected. You can then correct the error.
    The display modes are the same as those that are available for processing batch input sessions.
    The UPDATE Parameter
    You use the UPDATE parameter to specify how updates produced by a transaction should be processed. You can select between these modes:
    A Asynchronous updating. In this mode, the called transaction does not wait for any updates it produces to be completed. It simply passes the updates to the SAP update service. Asynchronous processing therefore usually results in faster execution of your data transfer program.
    Asynchronous processing is NOT recommended for processing any larger amount of data. This is because the called transaction receives no completion message from the update module in asynchronous updating. The calling data transfer program, in turn, cannot determine whether a called transaction ended with a successful update of the database or not.
    If you use asynchronous updating, then you will need to use the update management facility (Transaction SM12) to check whether updates have been terminated abnormally during session processing. Error analysis and recovery is less convenient than with synchronous updating.
    S Synchronous updating. In this mode, the called transaction waits for any updates that it produces to be completed. Execution is slower than with asynchronous updating because called transactions wait for updating to be completed. However, the called transaction is able to return any update error message that occurs to your program. It is much easier for you to analyze and recover from errors.
    L Local updating. If you update data locally, the update of the database will not be processed in a separate process, but in the process of the calling program. (See the ABAP keyword documentation on SET UPDATE TASK LOCAL for more information.)
    The MESSAGES Parameter
    The MESSAGES specification indicates that all system messages issued during a CALL TRANSACTION USING are written into the internal table <MESSTAB> . The internal table must have the structure BDCMSGCOLL .
    You can record the messages issued by Transaction TFCA in table MESSTAB with the following coding:
    (This example uses a flight connection that does not exist to trigger an error in the transaction.)
    DATA: BEGIN OF BDCDATA OCCURS 100.
    INCLUDE STRUCTURE BDCDATA.
    DATA: END OF BDCDATA.
    DATA: BEGIN OF MESSTAB OCCURS 10.
    INCLUDE STRUCTURE BDCMSGCOLL.
    DATA: END OF MESSTAB.
    BDCDATA-PROGRAM = 'SAPMTFCA'.
    BDCDATA-DYNPRO = '0100'.
    BDCDATA-DYNBEGIN = 'X'.
    APPEND BDCDATA.
    CLEAR BDCDATA.
    BDCDATA-FNAM = 'SFLIGHT-CARRID'.
    BDCDATA-FVAL = 'XX'.
    APPEND BDCDATA.
    BDCDATA-FNAM = 'SFLIGHT-CONNID'.
    BDCDATA-FVAL = '0400'.
    APPEND BDCDATA.
    CALL TRANSACTION 'TFCA' USING BDCDATA MODE 'N'
    MESSAGES INTO MESSTAB.
    LOOP AT MESSTAB.
    WRITE: / MESSTAB-TCODE,
    MESSTAB-DYNAME,
    MESSTAB-DYNUMB,
    MESSTAB-MSGTYP,
    MESSTAB-MSGSPRA,
    MESSTAB-MSGID,
    MESSTAB-MSGNR.
    ENDLOOP.
    The following figures show the return codes from CALL TRANSACTION USING and the system fields that contain message information from the called transaction. As the return code chart shows, return codes above 1000 are reserved for data transfer. If you use the MESSAGES INTO <table> option, then you do not need to query the system fields shown below; their contents are automatically written into the message table. You can loop over the message table to write out any messages that were entered into it.
    Return codes:
    Value
    Explanation
    0
    Successful
    <=1000
    Error in dialog program
    > 1000
    Batch input error
    System fields:
    Name:
    Explanation:
    SY-MSGID
    Message-ID
    SY-MSGTY
    Message type (E,I,W,S,A,X)
    SY-MSGNO
    Message number
    SY-MSGV1
    Message variable 1
    SY-MSGV2
    Message variable 2
    SY-MSGV3
    Message variable 3
    SY-MSGV4
    Message variable 4
    Error Analysis and Restart Capability
    Unlike batch input methods using sessions, CALL TRANSACTION USING processing does not provide any special handling for incorrect transactions. There is no restart capability for transactions that contain errors or produce update failures.
    You can handle incorrect transactions by using update mode S (synchronous updating) and checking the return code from CALL TRANSACTION USING. If the return code is anything other than 0, then you should do the following:
    write out or save the message table
    use the BDCDATA table that you generated for the CALL TRANSACTION USING to generate a batch input session for the faulty transaction. You can then analyze the faulty transaction and correct the error using the tools provided in the batch input management facility.

  • What are the common APIs we use in oracle interface

    What are the common APIs we use in oracle interface,and any APIs are there for validation Of data During Tranfer to interface table.
    How to find Api s in oracle applications in Individual modules

    For 11i, all public APIS are listed at http://irep.oracle.com
    For R12, use the "Integration Repository" responsibility in your R12 instance to list the APIs available in that instance
    HTH
    Srini

  • What are the SAP inbox tables.

    Hi Team
    i want to know what are the SAP inbox tables.
    if i have click on SAP inbox for perticular user, retrived 37000 entries and give short dump "Time Out" . i want to know from which table retrived the records and display into the SAP inbox(SBWP).
    Thanks in advance.
    Puneet.

    Look at SAPoffice tables and Business Workplace tables : SOOD, SOOS, SOC3, SOFFCONT1, BCST_SR, BCST_CAM
    Regards,
    Raymond

  • What are the SAP Business one requirements for intercompany intergration

    Hi. what are the SAP Business one requirements for intercompany intergration

    Hi Wendy,
    Intercompany 1.1 is supported on SAP Business One 8.82 and Intercompany 2.0 is supported on SAP Business One 9.0.
    So depending on Solution version your are looking for, refer to Prerequisites section in the respective version's Administrator Guide.
    For further information on Intercompany Integration Solution for SAP Business one, you may refer the following:
    https://websmp210.sap-ag.de/partneredge/b1/intercompany  
    Regards,
    Agneesh Jain
    SAP Intercompany Team

  • What are the messaging apis for sms for developers at ui and framework side

    what are the messaging apis for sms for developers at ui and framework side.It would be better if i get the apis for iOS7.If not, Please let me know if i can acess the apis of older version

    you will likely get better response here
    https://discussions.apple.com/community/developer_forums

  • What are the sap basis daily activities  in support project

    Hi Friends, recently i am involved in Support project, could you please tell me what are the daily activities to follow in support project
    thanks&regards
    suresh

    Hi Suresh,
    Few of daily activities in which you as a Basis Consultant should involve are as below:
    - Day to day system administrative issues raised by users e.g. User ID locked or new SAP ID creations etc.
    - Daily watch on background batch jobs. If any job failed due to some reason, work on it to avoid such failure in future with the help of function consultant
    - Watch on system performance
    - Authorizations & Roles definitions & assignements depending upon requirement.
    - System Backup depending upon business requirement
    - Printer setup in SAP
    - Watch on Print spool to avoid failures in SAP doccuments printing
    - Watch on interfaces (IDoc/EDI etc), if any, with external system
    Also talk to your earlier or senior Basis consultant to know more.
    Hope it will help you.
    Regards,
    Anup

  • What are the SAP backup for SID (SAP DB), Master & MSDB?

    Dear Experts,
    I'm trying to do backup via tcode DB13 for full backup.  Somehow there are 3 database option for me to choose, which are Master, MSDB and SID (SAP DB).
    I just wonder what are they.
    My concern is which of the above options consists all the customizing data in IMG.
    Please advise.
    regards,
    Abraham

    Hi Abraham,
    Data is in SID (sap db) but if possible you choose all three in one go. Otherwise take backup of SID
    Read this one if possible,
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDBMSSDBA/BCDBMSSDBA.pdf
    Thanks

  • What are the SAP standard programs?

    Hi PM Guys,
    I have a question that is as below:-
    We have the following Master Data:
    1) Functional Location
    2) Equipment
    3) Equipment BOM
    4) Counter
    5) Catalog Profiles
    6) Task List
    a) General Task List
    b) Equipment Task List
    7) Maintenance Plans
    a) Time Based
    b) Performance Based
    Can you tell me the SAP standard programs available for the above master data which can be used for data migration of the above master data from the flat files into SAP system.
    Thanks in Advance,
    Vijaya Krishna

    HI
    you can find the standard program while executing the T code LSMW itself.
    type LSMW ,specify the description in the next screen select the <b>Standard batch or direct input</b> under the heading you can find the in the field <b>object</b> use F4 to find all the standard programs in SAP
    0400   Equipment         
    0410   Message (IH)      
    0420   Confirmation (IH) 
    0425   Measuring point   
    0430   Measurement Documen
    0440   Functional location
    0450   Object link       
    0460   Maintenance plan  
    0470   Equipment task list
    0480   FnctnlLoc.TaskList
    0490   Gen.task list     
    regards
    thyagarjan

  • What are the sap scripts

    plz tell me any tutorials abt the sap scripts

    HI,
    Please follow the link given below to explore SAPSCRIPT.
    SAPSCRIPT
    SAPSCRIPT 2
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/SAPSCRIPTS_tutorial.html
    http://www.sap-img.com/sapscripts.htm
    Link for SAP Scripts (step by step procedure)
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Create_A_SAPSCRIPT_Form/How_to_Create_SAPSCRIPT.html
    http://esnips.com/doc/1ff9f8e8-0a4c-42a7-8819-6e3ff9e7ab44/sapscripts.pdf
    http://esnips.com/doc/1e487f0c-8009-4ae1-9f9c-c07bd953dbfa/script-command.pdf
    http://esnips.com/doc/64d4eccb-e09b-48e1-9be9-e2818d73f074/faqss.pdf
    http://esnips.com/doc/cb7e39b4-3161-437f-bfc6-21e6a50e1b39/sscript.pdf
    http://esnips.com/doc/fced4d36-ba52-4df9-ab35-b3d194830bbf/symbols-in-scripts.pdf
    http://esnips.com/doc/b57e8989-ccf0-40d0-8992-8183be831030/sapscript-how-to-calculate-totals-and-subtotals.htm
    SAP SCRIPT FIELDS
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/8033ea454211d189710000e8322d00/content.htm
    scripts easy material
    http://www.allsaplinks.com/sap_script_made_easy.html
    Other Links
    http://www.virtuosollc.com/PDF/Get_Reporter.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/da/6ada3889432f48e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/66/bc7d2543c211d182b30000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/5b/d22cee43c611d182b30000e829fbfe/frameset.htm
    http://www.virtuosollc.com/PDF/Get_Reporter.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/da/6ada3889432f48e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/66/bc7d2543c211d182b30000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/5b/d22cee43c611d182b30000e829fbfe/frameset.htm
    http://www.thespot4sap.com/Articles/Code_CostCentreReport.asp
    http://www.allsaplinks.com/dialog_programming.html
    http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/frameset.htm
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    http://www.geocities.com/ZSAPcHAT
    http://www.sappoint.com/abap/ssintro.pdf
    http://www.sappoint.com/abap/sscript.pdf
    http://www.sappoint.com/abap/sscript.pdf
    http://www.sappoint.com/abap/lsetssap.pdf
    http://www.sappoint.com/abap/sscrtpex1.pdf
    http://www.sap-img.com/sapscripts.htm
    http://www.thespot4sap.com/Articles/SAPscript_Introduction.asp
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/SAPSCRIPTS_tutorial.html
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRPROG/BCSRVSCRPROG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRRDI/BCSRVSCRRDI.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCREDIT/BCSRVSCREDIT.pdf
    http://www.sappoint.com/abap/sscrtpex1.pdf
    http://www.sap-img.com/sapscripts.htm
    http://www.esnips.com/doc/1ff9f8e8-0a4c-42a7-8819-6e3ff9e7ab44/sapscripts.pdf
    Regards,
    Padmam.

  • What are the SAP Installation  Rewquirements

    I want to buy this laptop
    dell inspiron14r
    Intel® Coreu2122 i3-350M Processor (2.26Ghz, 4Threads, 3M cache)
    Genuine Windows® 7 Home Basic 64 bit (English)
    2GB (1 X 2 GB) 1 DIMM DDR3 1333Mhz
    320GB 5400RPM Hard Drive
    14.0 Widescreen HD WLED Glossy Display with TrueLifeu2122 (1366x768
    Intel® HD Graphics (India)
    DVD+/-RW Optical Drive
    SAP can be install in that laptop?

    Hello,
    I believe you won't have problems if you are installing a SAP system just for test purposes. You might experience performance issues as it has only 2GB.
    Also definitely you will have to change the OS, to a Windows Server (be aware that 2008 R2 is not supported yet) or another
    OS that you prefer. Please check the supported OS / DB platforms at service.sap.com/pam
    Then also follow the specific installation guide for the system that you are installing (e.g. NW7.0 EhP1 SR1 / ERP 6.0 EhP4, etc)
    you can find the guides at service.sap.com/instguides as well.
    Regards,
    Daniel

  • What are the sap basis administrator tasks for SAP CRM 7.0

    Hello Guys,
    I am an SAP BASIS administrator. I have never worked on any CRM system.
    Now a days people in market talk much about wheather you have worked on CRM.
    I have  no idea how CRM basis administration is different from the basis administartion of other products based on netweaver.
    I would appreciate if someone throw some light on "SAP basis administration of CRM system".
    Thanks in Advance.

    Hi,
    Some excellent documentations are available in:- https://websmp205.sap-ag.de/crm-inst (search for the operation guide pdfs, if required you can also check inst/upg docs). User your S user id/password to login.
    From my experience, in practical field most of the issues you will face with qRFC/BDoc message flow handling and JAVA stack administration. Stress on these two areas and go through the guides, CRM admin won't be a major issue.
    Once you go through the basic operation guides and start working on the system then you will come to know there exists many CRM specific trx(SMW02,SMWP..etc) codes and CRM related tables(CRMPAROLTP,CRMRFCPAR.. etc),bgd jobs/reports - which you have to take care at times.
    Thanks

  • What are the SAP B1 limits

    I am looking for any official SAP information on the limitations of transaction volume supported by B1. I have a client that will be recieving 10,000 web orders per day, of one or two lines on each order. B1 can likely handle taking these orders through a third party system like Ibolt. But the question is about SAP performance when we are adding 10,000 BP's per day, generating 10k deliveries and invoices per day. Will B1 slow down too much, even if we put strong hardware in place. The tables will grow rapidly and users searching for BP's or marketing douments and running reports will not wait for the system when they search. Has SAP released any benchmarks about performance and limits? Thanks

    Hi Peter,
    SAP B1 is a solution for small and medium companies. it would be better to use SAP A1 if you want to implement in large companies.
    Rgds,
    JimM

  • What is the teststand api call to execute sequence file after it is opened-C#?

    I am programming in C#. I want to make a call to execute a sequence file after I call OpenSequenceFile. I want to do this outside of the GUI. I know that the GUI has a Single Pass button that executes the sequence, I want to know how can I just make the execution call myself?

    Hi IM,
    I think this thread will answer your task
    http://forums.ni.com/ni/board/message?board.id=330&message.id=19658&query.id=461003
    Regards
    juergen 
    =s=i=g=n=a=t=u=r=e= Click on the Star and see what happens :-) =s=i=g=n=a=t=u=r=e=

  • What are the printing api available in java

    I am very new to java..
    I want to print a file from my java program .. how to do it..
    please help.

    http://onesearch.sun.com/search/developers/index.jsp?col=devforums&qp_name=New+To+Java+Technology&qp=forum%3A54&qt=printing+api
    Mike

Maybe you are looking for

  • Itunes 1.11 windows 8 install problems, itunes 11.1 windows 8 install problems

    I am running Windows 8 on a Dell XPS16 laptop and was using iTunes v 10 something.  When upgrading my iPhone 4S to IOS7 while connected to iTunes running on my PC, the upgrade indicated that I needed to upgrade my iTunes to v11.1 something (the lates

  • Wireless WRT54G is not able to do wireless and setup menu is out of whack

    Ok, So I got a laptop with my new job and I figured hey I would love to surf the web wireless at home (laptop's wirelss connection works at work). I bought a Linksys WRT54G router Monday and attempted to replace my old trusty linksys 4 port BEFSR41 r

  • Please tell me how to do iMovie 6 COMMAND T (spit) in iMovie 11

      I want to split an event to make chapters. I try to follow directions in iMovie 11 manual and online, but the "split" command is always grayed out. What can I do to split an event?    Thank you

  • Creating a blu-ray

    I am looking into purchasing an external blu-ray burner. One thing the company told me whose product I am interested in is If I want the Blu-ray to play back on a normal Blu-ray player connected to a TV, like a typical commercial film on a Blu-ray di

  • Order BOM_Variant Configuration

    Dear Experts, Sale order has been created for a finished product and when try to configure the product sing CU51 , the system displays the error message " Error updating bill of material ( See log SLG1 ) . And for some items which is already configur